Combo box / text box null

Hustle1081

Registered User.
Local time
Today, 23:51
Joined
Jan 8, 2004
Messages
16
Does anyone know how to make a form load up with blank combo / text boxes every time?
 
I assume these are unbound fields? Meaning that the control source of the field is empty (so that it's not tied directly to fields in a table or query)?

You can set a combo box to be blank by setting it to Null. Use code like this:
Me.combo_box=Null

Set a text box to be blank by setting it to a zero-length string like this:
Me.text_box=""
 

Users who are viewing this thread

Back
Top Bottom