B bill Jul 15, 2003 #1 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?
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 Jul 15, 2003 #2 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
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