Form Opening to New Record

  • Thread starter Thread starter bill
  • Start date Start date
B

bill

Whenever I open my form for the first time, it opens to
record number 1. What code do I need to open it to a new
record?
 
Hi,
You can set the DataEntry property to True, but
you won't be able to view previously entered records,
or you can put this in the open event:

DoCmd.GoToRecord acDataForm,"formName",acNewRec
 
Back
Top