You got 2 hashes (##) after the explicit date value after the Strong
construction.
Try (if [EID] is Numeric)
rs.FindFirst "[Current_Date] = " & Format(Me![txtDate], "\#mm/dd/yyyy\#") &
_
" And [Eid] = " & Str(Me![txtEID])
If [EID] is a Text Field:
rs.FindFirst "[Current_Date] = " & Format(Me![txtDate], "\#mm/dd/yyyy\#") &
_
" And [Eid] = '" & Str(Me![txtEID]) & "'"

Signature
HTH
Van T. Dinh
MVP (Access)
> Private Sub GetEIDDate_Click()
>
[quoted text clipped - 12 lines]
> Me.Bookmark = rs.Bookmark
> End Sub
Randy - 31 Jul 2005 14:20 GMT
Thanks Van, that was it...Randy
> You got 2 hashes (##) after the explicit date value after the Strong
> construction.
[quoted text clipped - 28 lines]
>> Me.Bookmark = rs.Bookmark
>> End Sub