I have a form that connects to a SQL database using databinding and I am able to retrieve the data using search options in my SELECT statement just fine. However sometimes there may be many results and I want to be able to click through them and have the form update as I click.
I have to buttons on the form one marked previous and one next. I will use the Next button as reference for the sake of arguement.
This is the code I have in the Click event
But when the button is clicked NOTHING happens. Hopefully someone can help me out as I didnt find my answer in teh help file.
I have to buttons on the form one marked previous and one next. I will use the Next button as reference for the sake of arguement.
This is the code I have in the Click event
Code:
Me.BindingContext(dataset1, "Table").Position += 1
But when the button is clicked NOTHING happens. Hopefully someone can help me out as I didnt find my answer in teh help file.