peterbowles
Registered User.
- Local time
- Today, 11:19
- Joined
- Oct 11, 2002
- Messages
- 163
I am filtering a form. if the user searches for a name that is not in the database the main form returns blank.
How do I show a message box to say the no records were found if there were none.
Also I am using this code to search records via a customer name.
FilterString = ""
If Chkname Then
FilterString = FilterString & "CustomerName Like """ & Me!txtname & """"
End If
how do I search for records that contain certain letters in the customer name
Cheers
How do I show a message box to say the no records were found if there were none.
Also I am using this code to search records via a customer name.
FilterString = ""
If Chkname Then
FilterString = FilterString & "CustomerName Like """ & Me!txtname & """"
End If
how do I search for records that contain certain letters in the customer name
Cheers