Hello. I have a text search form. When I enter in a value (text value) that pertains to a certain control on my form and press search, if such a record exists, the information in the controls will change accordingly to my searched text. It's a search control that only relates to that form.
The problem is, I'd like to NOT have the other controls visible until I press search AND ONLY BE VISIBLE if there is a record for that search. If there is no record for that search, the controls would NOT pop up and instead a popup message box would say something like, Record does not exist, would you like to create a new record for this person? yes, no command buttons.
I tried the putting this code in the after update of the control where you'd type in the value you want to search
After pressing search, if there is no record for that person I searched for, a msg box appears saying, no such record exist. I'd press ok and immediately the control, FirstName, (which I wanted to stay hidden until a record DOES exist) appears obtaining some other name (the name of the FIRST person I entered into my database).
help anyone?
Also, how would I create a multiple criteria search control?
such as I want to search for Name AND Date of Birth.
Thanks in advance for any help.
The problem is, I'd like to NOT have the other controls visible until I press search AND ONLY BE VISIBLE if there is a record for that search. If there is no record for that search, the controls would NOT pop up and instead a popup message box would say something like, Record does not exist, would you like to create a new record for this person? yes, no command buttons.
I tried the putting this code in the after update of the control where you'd type in the value you want to search
Code:
If Me.txtSearch2 = True Then
Me.FirstName.Visible = True
Else
Me.FirstName.Visible = False
End If
After pressing search, if there is no record for that person I searched for, a msg box appears saying, no such record exist. I'd press ok and immediately the control, FirstName, (which I wanted to stay hidden until a record DOES exist) appears obtaining some other name (the name of the FIRST person I entered into my database).
help anyone?
Also, how would I create a multiple criteria search control?
such as I want to search for Name AND Date of Birth.
Thanks in advance for any help.