updating combo boxes

skate

Registered User.
Local time
Today, 22:13
Joined
May 22, 2002
Messages
136
I have a combo box(A) in a form that gets values from itself--from values entered in a text box and another combobox(B). When I change the values in the text box the values update in combo(A), but when i change the selection in combo(B) the values are not updated in combo(A) until i close the form completely and reopen. Anyone know how to fix this?
 
In the On Change event of the combo(B), put in this line:

cboMyComboBox.Requery

(replace cboMyComboBox with the actual name of your combo box(A).


BL
hth
smile.gif
 
it still doesn't update. Does it have to do with the values combo (A) is based on? Ahh! things never seem to work for me!
 

Users who are viewing this thread

Back
Top Bottom