J jeo Registered User. Local time Today, 17:55 Joined Dec 26, 2002 Messages 299 Jan 14, 2005 #1 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.
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.
ghudson Registered User. Local time Today, 12:55 Joined Jun 8, 2002 Messages 6,193 Jan 14, 2005 #2 What about an empty string? Code: YourComboBox = "" It would be better to assign a Default Value in the "properties" of the Combo Box.
What about an empty string? Code: YourComboBox = "" It would be better to assign a Default Value in the "properties" of the Combo Box.
J jeo Registered User. Local time Today, 17:55 Joined Dec 26, 2002 Messages 299 Jan 14, 2005 #3 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!
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!