how do i create an event procedure for a form to open with no inf

J

Jessica

I have a form and when i open it. To enter new data i want it to open without
information.
 
X

xRoachx

Hey Jessica, in the help file, search for DoCmd and review the GoToRecord
method. The format will be similar to this:

DoCmd.GoToRecord acDataForm, , acNewRec

You can place this code in your fprm's On Open event.
 
Top