Starting on a new record in an input form

ScottSisk

New member
Local time
Today, 15:32
Joined
Oct 29, 2001
Messages
7
Right now, when I open my input form, it brings up the first record in the table. How do I set up the form to automatically start a new record when opening the form?
 
In the Form's On Load Event Property (using an event procedure) use this code:


DoCmd.GoToRecord , , acNewRec

HTH
 
Thanks, that worked perfectly!
 

Users who are viewing this thread

Back
Top Bottom