Thanks for your reply Robbe
I am sorry my understanding of code behind is linited so I will try and explain again what I am trying to do
I want a total showing at the bottom of my input Xaml/form in a textbox showing the total sum of 18 bound textboxes on that form. I have made an extra column on the dataset called totalscore, and then when i double clicked on it up came the
following code.
Partial Class CoursesPlayedDataSetPartial Class COURSES_PLAYEDDataTable
Private Sub COURSES_PLAYEDDataTable_ColumnChanging(ByVal sender As System.Object, ByVal e As System.Data.DataColumnChangeEventArgs) Handles Me.ColumnChanging
If (e.Column.ColumnName = Me.TotalScoreColumn.ColumnName) Then
'Add user code here
End If
End Sub
End Class
End
Class
I was hoping to bind the sum to the form giving the sum total in a bound Textbox.Have I choseb the wrong typs of class? When I tried to add the code Public double total etc it said not supported
Also the "{" are not in any of my codes I think the code is vb.net
Thanks David