Click to See Complete Forum and Search --> : ADO recordset Find method


mcda1953
March 6th, 2003, 02:54 PM
How do you determine if there were no matches when a recordset.find method is used.

antares686
March 6th, 2003, 03:22 PM
If you are using the Search Forward option then you can do If rs.EOF, if Search Backwards then rs.BOF.


See Find Method (ADO) (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/mdamth02_6.asp) from the MSDN Library for more details.