heres what i done
I created a blank form with a text box and 2 buttons ok and cancel
here is the code the ok button
Private Sub Command2_Click()
If Text0 = "Password" Then
DoCmd.RunMacro "Macro1"
Else: MsgBox ("Please Renter Correct Password"), vbOKOnly, "Error!", 0, 0
Exit Sub
End If
End Sub...
I am creating a catalogue for 300+ books lying around my house.
On a form there are 2 text boxes called Search_Author and Search_Book and a combo box called Search_Genre
When The Fields are all empty the query brings back the entire database but whenever any field is not blank the query brings...