Here is where I am stuck. I found the "after update" section but I do not
know how to set up the requery. I see [event procedure] where I must enter
some code to create the requery. What do I type for the "event procedure"?
Do I need some sort of path or criteria to describe the name of the query
that is to be requeried? If so, what does that line of code look like?
Click on the ... icon by the [Event Procedure] line, after selecting
that event. Choose Code Builder if you're offered a list of options.
The code would be something like
Private Sub NameOfTheTextbox_AfterUpdate()
Me.Requery
End Sub
Once the requery is set up I suspect the user would need to know to enter
his/her wildcard information into the text box and then hit the enter key to
activate the requery? Is there an easy way to set up a "submit" button for
users that do not know they must hit "enter" on the keyboard to submit their
wildcard requests?
Well... you have to do SOMETHING to teach users how computers work.
The telepathic user interface will be coming out in 2019 if all goes
well...
All I can suggest is putting a label on the form next to the textbox
with instructions like
Enter the word that you want to search for in the box right here >>
and then press the Enter key on your keyboard.
or whatever will communicate to your users.
John W. Vinson[MVP]