View Full Version : Starting on a new record in an input form


ScottSisk
11-21-2001, 09:54 AM
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?

pdx_man
11-21-2001, 10:14 AM
In the Form's On Load Event Property (using an event procedure) use this code:


DoCmd.GoToRecord , , acNewRec

HTH

ScottSisk
11-21-2001, 10:28 AM
Thanks, that worked perfectly!