Well, I've almost got this working.
Here is my code currently. StartDate is formatted as a Short Date. And it works if I type the date exactly like this mm/dd/yyyy. However, I don't want to have to input the '/' between mmddyyyy. I tried adding an input mask to the txtFilter for short date, but then I get a run time error 6 overflow. Any ideas what I can do so the user only has to enter the mmddyyyy without having to add the '/'s?
Code:
Set rs = Me.Recordset.Clone
rs.FindFirst "[StartDate] > #" & Format(Me.txtFilter, "mm\/dd\/yyyy") & "#"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark