Hello all,
I have a main form (frmMainMenu) and a subform (frmSub).
I already have a number of filters, which filter by specific data. Here is the code i am using for that:
I am wondering if i can using something similar to either prompt for a user input, or for the user to type what they want to filter in a text box, and filter by that?
Thanks
Matt
I have a main form (frmMainMenu) and a subform (frmSub).
I already have a number of filters, which filter by specific data. Here is the code i am using for that:
Code:
With Me.frmsub.Form
.Filter = "[Franchise] =" & """Abarth"""
.FilterOn = True
End With
Thanks
Matt