[RESOLVED] Help on navigate through records with TextBox DataBinding
I have the following code i got from another thread and modified it to be able to navigate through records. The first record of the table is loaded into the textbox, but will not navigate. Tested already with a combox and worked, so i'm sure there is data in the bindingsource.
Code:
Me.BindingSource1.DataSource = MyData
Me.BindingSource1.DataMember = "ParentTable"
Me.BindingNavigator1.BindingSource = Me.BindingSource1
Me.TextEdit1.DataBindings.Add("Text", MyData, "ParentTable.ID")
Any help will be appreciated!
2005
Re: Help on navigate through records with TextBox DataBinding
Found the fix! Thanks anyway...
2005