user input for a search

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an Access application that I have all the menus shut off the only
navagation is thru commands on the forms. I would like to add a search
function connected to a command button that would go to a specific field and
then open a input box for the user to enter what they are looking for in that
field. Thanks
 
Try this --
In the header of the form put unbound textbox, combox, or listbox to enter
or select the criteria. Add a command button to requery the query that is
the record source for the form.
In the query add criteria from each of the textbox, combox, or listbox from
the form header like --
Like "*" & [Forms]![YourFormName]![YourTextBox] & "*"

If you have entered 'be' in the textbox you will get Abe, Abel, Betty, Maybe.

If you do not use the leading or trailing wildcards you will limit what you
pull.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top