help please
I have a simple bit of code
that searches for a [User Name] field
the basic idea is I place a field called "search" on a form
and set its on change to
Private Sub Search_Change()
Search.SetFocus
strtarget = Search.Text
If strtarget < "a" Then strtarget = "a"
[User...