Browsing records from a specific location

  • Thread starter Thread starter Luis Mendes
  • Start date Start date
L

Luis Mendes

Hi,

I've created a Data Form with the Wizard (Under VB.net
and MS Access)
I can browse the records with the buttons( movefirst,
movelast,move previous,...).
If I want to move to a specific location like where
costumersID=5 for example, and then continuing browsing
the records with the buttons from that position.
How can it be done?

Thanks in advance,

Luis Mendes
 
Hi Luis,

First, you have to find the BindingManagerBase (depends on the datasource
the way to obtain it)
Once you have it, simply set its Position property to record number.
 
Back
Top