CCIDBMNG Registered User. Local time Yesterday, 23:58 Joined Jan 25, 2002 Messages 154 Jul 5, 2002 #1 I'm using the the findfirst method to bookmark a record. Can someone tell me the code to say if the record is not found? I know I've seen it some where on here before but I can't find it now. Thanks.
I'm using the the findfirst method to bookmark a record. Can someone tell me the code to say if the record is not found? I know I've seen it some where on here before but I can't find it now. Thanks.
L llkhoutx Registered User. Local time Today, 01:58 Joined Feb 26, 2001 Messages 4,013 Jul 7, 2002 #2 After your find first, execute If rs.NoMatch then -add your code for no matching records end if "rs" is your recordset.
After your find first, execute If rs.NoMatch then -add your code for no matching records end if "rs" is your recordset.
CCIDBMNG Registered User. Local time Yesterday, 23:58 Joined Jan 25, 2002 Messages 154 Jul 8, 2002 #3 Thank you that worked perfect.