boblarson
Smeghead
- Local time
- Today, 08:30
- Joined
- Jan 12, 2001
- Messages
- 32,053
I figured out which form myself
This line should work:
Code:rs.FindFirst "[Find_Date] = #" & Format(Date, "mm/dd/yyyy") & "#"
Here's what works for sure (just tested it - in fact I got it by adding a combo box for find a record option and just converted the combo reference to DATE.
Code:
Private Sub Find_Today_Click()
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Date_Worked] = #" & Format(Date, "mm\/dd\/yyyy") & "#"
If Not rs.EOF Then
Me.Bookmark = rs.Bookmark
Else
MsgBox "No Match"
End If
End Sub