Clearing combo boxes

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
 
V

Van T. Dinh

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

Me.OtherComboBox1 = Null
 
Top