C CodeCruncher New member Local time Today, 07:21 Joined Sep 22, 2006 Messages 1 Sep 25, 2006 #1 How do i set a form to start on a new record when it loads? I have tried the data tab in properties but there isn’t anything there what do I do? Can I use some VBA code?
How do i set a form to start on a new record when it loads? I have tried the data tab in properties but there isn’t anything there what do I do? Can I use some VBA code?
G grnzbra Registered User. Local time Today, 15:21 Joined Dec 5, 2001 Messages 376 Sep 25, 2006 #2 In the OnOpen event: DoCmd.GoToRecord , , acNewRec
E ejstefl Registered User. Local time Today, 15:21 Joined Jan 28, 2002 Messages 378 Sep 25, 2006 #3 Or you can set the form's data entry property to yes. This will only allow you to add new records to the form.
Or you can set the form's data entry property to yes. This will only allow you to add new records to the form.