Make form default to new record?

  • Thread starter Thread starter Joel Parker
  • Start date Start date
J

Joel Parker

Is there a way to make a form default to a new record, but still allow
users to go back and edit existing records?

Thanks,
- Joel
 
Joel said:
Is there a way to make a form default to a new record, but still allow
users to go back and edit existing records?

Thanks,
- Joel

Either open it in data entry mode and instruct your users that all they have
to do to see other records is ti use the menu or toolbar to remove filters
(data entry mode is just a filter matching zero records).

OR

Run this code in the Load event of your form...

DoCmd.RunCommand acCmdRecordsGoToNew

(the first choice is more efficient if there are lots of records).
 
Is there a way to make a form default to a new record, but still allow
users to go back and edit existing records?

Thanks,
- Joel

In the Form's Load event:

DoCmd.RunCommand acCmdRecordsGoToNew
 

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

Back
Top