Question How to search and locate record?

notooth

New member
Joined
Jun 1, 2010
Messages
1
Programming Experience
Beginner
Hello,

I have a dataset, a bindingsource, a tableadapter, and a bindingnavigator on my form. Can you tell me how to find data and locate to the new position?

Thank you.
 
Call the Find method of the BindingSource and specify the criteria to match. That will return the index of the matching record, which you can then assign to the BindingSource's Position property.
 
Back
Top