This is a really nice little form. I was wondering if someone could explain to me why when you click on the search results it yields a message box thats says "Could not locate [Date]", where date is the date of the row clicked on. The relevance of this is that when I tryed utilizing a similar setup in my DB I dont get a messagebox like that but a syntax error instead which tellings me Im not fully understanding what's going on and I was hoping someone could shed some light on it for me.
Private Sub QuickSearch_AfterUpdate()
DoCmd.Requery
Me.RecordsetClone.FindFirst "[Number] = " & Me![QuickSearch]
If Not Me.RecordsetClone.NoMatch Then
Me.Bookmark = Me.RecordsetClone.Bookmark
Else
MsgBox "Could not locate [" & Me![QuickSearch] & "]"
End If
End Sub