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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form and when i open it. To enter new data i want it to open without
information.
 
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.
 
Back
Top