S ScottSisk New member Local time Today, 15:32 Joined Oct 29, 2001 Messages 7 Nov 21, 2001 #1 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?
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 Just trying to help Local time Today, 07:32 Joined Jan 23, 2001 Messages 1,347 Nov 21, 2001 #2 In the Form's On Load Event Property (using an event procedure) use this code: DoCmd.GoToRecord , , acNewRec HTH
In the Form's On Load Event Property (using an event procedure) use this code: DoCmd.GoToRecord , , acNewRec HTH
S ScottSisk New member Local time Today, 15:32 Joined Oct 29, 2001 Messages 7 Nov 21, 2001 #3 Thanks, that worked perfectly!