Form Opening to New Record

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?
 
D

Dan Artuso

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
 
Top