J
jjsaw5 via AccessMonster.com
Hello,
I have a form that is used for searching my database. In the header of the
form i have a text box where the user inputs the search criteria and then
presses a "Search" button to execute it.
What i would like to do is after the search button is clicked is there a way
that i can have the text box cleared of the information that was just
searched for?
Here is the code I'm using to preform my search
Private Sub Command35_Click()
If IsNull(cmbLock) = False Then
Me.Recordset.FindFirst "[SR Num]=" & cmbLock
End If
End Sub
I have a form that is used for searching my database. In the header of the
form i have a text box where the user inputs the search criteria and then
presses a "Search" button to execute it.
What i would like to do is after the search button is clicked is there a way
that i can have the text box cleared of the information that was just
searched for?
Here is the code I'm using to preform my search
Private Sub Command35_Click()
If IsNull(cmbLock) = False Then
Me.Recordset.FindFirst "[SR Num]=" & cmbLock
End If
End Sub