How to change Combo Box value?

slyvsspy

Registered User.
Local time
Today, 21:36
Joined
Jun 24, 2002
Messages
51
I need to know how to change a Combo Box value on a form by using a command button also located on the same form. I thought that possibly I could run a macro using the "set value" function but I couldn't get this to work.

anyone have any ideas

thanks, Josh
 
In code it is simply:
Me.ComboBoxName = <new value>

Include it in quotes or whatever as appropriate. Unfortunately I don't do Macros so I'm not sure what the problem is there.
 

Users who are viewing this thread

Back
Top Bottom