How do I open a form with a blank first record?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form that uses a combo box to display data from a table/query...
When I open this form, the first record of my table/query is displ;ayed... I
would like to be able to open this form with no records being displayed until
I select the data from the combo box...

Please help...!!!
 
You could add the following code to the Activate or Open Event of the form:
Docmd.GoToRecord ACNewRecord

OR

Change form properties Data Entry = NO

Hope this helps.

Steph
 
Back
Top