StayAtHomeMom
Technical User
I need help with the code behind a form, more specifically on an After Update event. Basically, I want a form that has a textbox that I can enter a simple string. I then want the code to create a list of items (in a subform? in a list box? I don’t know) that satisfy the criteria based on the simple string I entered, i.e.
Select CatNo from MasterCatalogNoList where CatNo like “*” & [TextBoxEntry] & “*”
MasterCatalogNoList is a table in my database. The form would look something like this:
---------------------------------------------------------
Enter Catalog Number:
356
Matching CatNo Results:
89356PP
9093356U
YT356WQQ
356NNN
etc
----------------------------------------------------------
Thank you in advance for any guidance you can offer!
Select CatNo from MasterCatalogNoList where CatNo like “*” & [TextBoxEntry] & “*”
MasterCatalogNoList is a table in my database. The form would look something like this:
---------------------------------------------------------
Enter Catalog Number:
356
Matching CatNo Results:
89356PP
9093356U
YT356WQQ
356NNN
etc
----------------------------------------------------------
Thank you in advance for any guidance you can offer!