show all records

K

Karen

Hi,

I have a form that has several combo boxes. Each time the user selects
something from a combo box, queries are run and a record set returned to
match the specified criteria. (i.e. the form opens with 200 records, but by
using the combo boxes the user can get down to 1 record. ). Without closing
and re-opening the form, how can I get the form to display all of the records
again? I tried ShowAllRecords, but didn't have any luck. Any suggestions
are appreciated.
 
S

Steve Schapel

Karen,

Without knowing the details of what you've got there, I guess you could
remove the selections from the comboboxes, and then requery the form.
Removing the selections could be done by manually deleting them, or you
could put a command button on the form, and use a macro or VBA procedure
to clear the comboboxes.
 
K

Karen

Thanks, that worked perfectly. I used a macro and setvalue to set the value
of my combo boxes to null and then did a requery on the form
 

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

Top