Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

syntax help on rs.findfirst

Status
Not open for further replies.

tania20

Programmer
Oct 30, 2006
148
0
0
AU
Hi, I need some syntax help on the following line of code:

rs.FindFirst (rs![NewRecord] = True And IsNull(rs![Event_No]))

where NewRecord is type boolean and Event_No is string. Ive used this function mainly on strings so am not sure what to do with this one!
thanks!!

 
How about:

[tt]rs.FindFirst "[NewRecord] = True And [Event_No] Is Null"[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top