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

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
 
G

Guest

Hmm. When set to that, now I cannot cycle thru exisitng records as well.
Allow edits, and additions is enabled as well.
 
J

John Vinson

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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top