Two comboboxes don't affect each other

tomas_s

Registered User.
Local time
Today, 11:42
Joined
Mar 12, 2013
Messages
25
In my database you can search on either number or name. I have therefor, two combo boxes. and it works well, except that...

when I pick by number first, and then try to pick another record using the name combobox, the number combobox still shows the first search I did. I would like the two comboboxes to interact with each other, do you know what I mean?
 
If you mean you want one of Combo Boxes to change to blank when the other changes, then you could use some code in the After Update event of each combo, along the lines of;
Code:
Me.OtherComboName = ""
 
oh cool, yeah I will try that.
 

Users who are viewing this thread

Back
Top Bottom