U
utmusic
Guest
I have a dataset filled with my data, the problem comes when I try to add a record to that dataset. Here is my code....
The code does indeed add a record to the end of the dataset, the problem is that I cant navigate to it.
example. I have 302 records... I click the add button, I now have 303 records, but I can only navigate to the first 302. Thanks for your prompt response.
Code:
Dim reallychange
Try
Clear out the current edits
Me.BindingContext(DSReferences, "References").EndCurrentEdit()
Me.BindingContext(DSReferences, "References").AddNew()
Catch eEndEdit As System.Exception
System.Windows.Forms.MessageBox.Show(eEndEdit.Message)
End Try
Me.objVectorRef_PositionChanged()
The code does indeed add a record to the end of the dataset, the problem is that I cant navigate to it.
example. I have 302 records... I click the add button, I now have 303 records, but I can only navigate to the first 302. Thanks for your prompt response.