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
 
Back
Top