Hello
I have a bindingNavigator and some textboxes connected to the bindingsource, in a childform, a form inside another form.
I have a third form, a search function, and I need to change the bindingNavigator Position, when I choose a number in my "search" form.
I have some code in my "Search" Form, but I caannot get it to update the bindingnavigator in my child form:
Dim IndexNumber As Double = Me.TblMainVoyBindingSource.Find("ID", Me.TblMainVoyDataGridView.CurrentRow.Cells(0).Value)
frmEditVoyage.TblMainVoyBindingSource.Position = IndexNumber
The "frmEditVoyage" is located inside my Parent form "frmMain"
(The "Search" Form is not located inside any other forms)
I would appreciate any help
Thanks
Quazy