S skate Registered User. Local time Today, 03:59 Joined May 22, 2002 Messages 136 Mar 12, 2003 #1 I have a combobox in a form that displays the record and all it's entries based on the selection. How do I make the form load a blank record so that none of the fields are filled?
I have a combobox in a form that displays the record and all it's entries based on the selection. How do I make the form load a blank record so that none of the fields are filled?
C casey Registered User. Local time Today, 03:59 Joined Dec 5, 2000 Messages 448 Mar 12, 2003 #2 put the following code in the OnOpen Event for your form Me.YourComboBoxName=null or Me.YourComboBoxName="" You can do the same thing for any form fields as well. HTH
put the following code in the OnOpen Event for your form Me.YourComboBoxName=null or Me.YourComboBoxName="" You can do the same thing for any form fields as well. HTH