Two combo boxes

prmitchell

Registered User.
Local time
Tomorrow, 06:12
Joined
Jan 2, 2013
Messages
58
I have two combo boxes on a switchboard where the second is based on the user's selected value in the first box. The values in the second combo box are determined from a query which gets the selected value from the first combo box.
This works fine from scratch but how do I refresh the values in the second if the user changes their mind on the selected value in the first?
 
In the On Change event of the first Combo put the following code;
Code:
Me.SecondComboName.Requery
 
thank you kindly
 

Users who are viewing this thread

Back
Top Bottom