record finding from MS Access 2007, need help?

Muhammad Faisal

New member
Joined
Mar 19, 2007
Messages
2
Programming Experience
1-3
I'm trying to find a specific record from MS access 2007 through following method.

Me.BindingSource.find()

I really don't understand that what should be the parameters of .find() method. I checked the MSDN for help and found some clues as
(Property Name, Key as object), but it doesn't make any sens to me at all. Consider a simple table(Table1) from which I want to search a record.


ID First Field Second Field Third Field
1 aaa bbb ccc
2 xxx yyy xxx

Let's find out a record from Table1, then what would be the Me.BindingSource.find() method look like?
 
What makes you think you want to use BindingSource.Find()?

i.e. what is the actual problem youre trying to solve, by use of BindingSource.Find() ?
 
Back
Top