View Full Version : How to change Combo Box value?


slyvsspy
06-25-2002, 09:10 AM
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

David R
06-25-2002, 09:24 AM
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.