Hi Mary
I don't know of any way to do so, but if your users are constantly using the
built-in Find window then you should make it easier for them.
Are they always doing the Find in the same field? If so, add an unbound
textbox to your form, with the following AfterUpodate event procedure:
Private Sub txtFind_AfterUpdate()
If Len(txtFind) > 0 Then
Me.Filter = "[FieldToSearchIn] Like ""*" & txtFind & "*"""
Me.FilterOn = True
Else
Me.FilterOn = False
End If
End Sub
Then, all the users need do is type something into the textbox (or clear it
to show all the records).
If you want them to select a field to search in, add a combo box with the
possible fieldnames, and insert the selected field name in the appropriate
place in your filter string.