Hi Mash
I am getting faults which are under lined or in red
I am trying to select 1 row only by using a dataview form and selecting the primary key number this works on a delete form I set up using the primary key as the filter (?) and this I set in the DataSet Delete Command text.
Now I am trying to select 1 row in the same way to merge from CourseDataSet1 (table = Course ) into CoursesPlayedDataSet (table = Courses played)
Using the code below to insert
Private Sub BindingNavigatorAddNewItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
CourseDataSet1 = New CourseDataSet1; COURSE
CoursesPlayedDataSet = new CoursesPlayedDataSet ;// COURSES_PlAYED
CourseDataSet1 .Merge(CoursesPlayedDataSet); //
End Sub
Thanks David