"Reset" combo boxes

A

AccessKay

I have an unbound form with combo boxes used as filters for my reports. How
can I reset the combo boxes back to blanks so the user doesn’t have to exit
the form to choose a different filter selection? Can you set up a command
button that resets them?

Thanks for any suggestions.
 
G

golfinray

Yes, use a command button and label it Clear Filter. Code the onclick event:
Me.mycombo.value = ""
Me.requery
 
A

AccessKay

Thank you! This works great.

golfinray said:
Yes, use a command button and label it Clear Filter. Code the onclick event:
Me.mycombo.value = ""
Me.requery
 

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