how to automaticaly take you to "new record"?

C

chang

How can i make it then when you open a form it takes you
to a blank record to create a new record. thankx
 
D

Dirk Goldgar

chang said:
How can i make it then when you open a form it takes you
to a blank record to create a new record. thankx

You can set the form's Data Entry property, on the Data tab of the
form's property sheet in design view. That will hide all existing
records and show only a new blank record. If you want to have all the
existing records available for review, but still begin at the new
record, you'll need a bit of code. Let me know if that's what you want.
 
A

Alex

You could open the form using a macro action "OpenForm" then use
"GoToRecord" with the option of "New"

Alex
 
Top