On Load event question

jeo

Registered User.
Local time
Today, 17:55
Joined
Dec 26, 2002
Messages
299
Is there a way to assign a Null value to a combo box in the OnLoad event of the form? I tried Combo0 = Null and it's telling me that I can't assign a Null value to a non-variant.
Thanks.
 
What about an empty string?

Code:
YourComboBox = ""

It would be better to assign a Default Value in the "properties" of the Combo Box.
 
That = to "" produces the exact same error, I already tried it.
I can set a default value, but what do I set it to?
Thanks!
 

Users who are viewing this thread

Back
Top Bottom