Here is an example of what is happening.I have the grid attached to a BBS and is calling a Childform. As I type in the controls, the BO seems to be moving through the records as you can see from the attached zipped flash demo.
Michael
Edit Code from Calling Form
Private Sub cmdEdit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdEdit.Click
'Get and Set the Company ID from the Row being called
Dim LocCompanyID As Integer = GridData.ActiveRow.Cells("cusRecParID").ValueaBOMain.SeekToPrimaryKey(
Me.GridData.ActiveRow.Cells("recRecID").Value)'-- Show the child editing formIf ChildServiceForm.ShowDialog(LocCompanyID) = Windows.Forms.DialogResult.OK ThenElse'-- Undo the changes to the current rowaBOMain.Undo(BusinessUndoType.CurrentRowOnly)
End IfEnd Sub