Clearing combo boxes

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

I have four unbound combo boxes that I want to use to
search for records. What I would like to do is when one
combo box is updated, the others are cleared so the search
is only based on the one combo box.

Any help would be greatly appreciated.

Cheers
 
Try using the ComboBox_AfterUpdate Event to change the other ComboBox with
something like:

Me.OtherComboBox1 = Null
 

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