SetValue of Combobox ??

jazztie

Registered User.
Local time
Today, 07:46
Joined
Jun 9, 2005
Messages
19
I have two Combo boxes which work as selection boxes for the detail form. So, if one Combo box selects Name - the detail form is filled with the information belonging to that Name...

However, I have two combo search boxes: one for Name and one for Clientnumber. They both work fine, but I would like to reset the first combo box if the other one is used and vice versa.

So, basically, my question is: how do I reset a combo box in a AfterUpdate (right?) event of another combo box?

Any help is appreciated

Jazz
 
Me!ComboName.DefaultValue = ""

or set a value

Me!ComboName.DefaultValue = "Some_Value_in_Combo"
 

Users who are viewing this thread

Back
Top Bottom