have autonumber set. How do I set as default entry for form?

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

Guest

Not sure what happened. Was set to go right to new record entry with
autonumber when opening form.
Now it opens to the very first record in database and you have to got to end
to get new record entry.
How can I change this back to have the new record entry as the default view?
Thanks
 
Hmm. When set to that, now I cannot cycle thru exisitng records as well.
Allow edits, and additions is enabled as well.
 
Hmm. When set to that, now I cannot cycle thru exisitng records as well.
Allow edits, and additions is enabled as well.

I don't like Data Entry mode for this very reason. Sometimes you want
to default to the new record but still have the ability to go back.

Try putting code in the Form's Activate event:

DoCmd.GoToRecord acNewRecord

When you open the form, or navigate back to it from another form, this
will go to the new record.

John W. Vinson[MVP]
 
Back
Top