In my Project, I can already navigate records.
‘First Record
Me.BindingContext(DataSet11, "Customer").Position = 0
‘Next Record
Me.BindingContext(DataSet11, "Customer").Position = (Me.BindingContext(DataSet11, "Customer").Position + 1)
The only problem now is I cannot search a record. Like for example I am searching a CustomerNo in my table Customer. The value I’m search is 016.
Kindly help me please?


Reply With Quote