Blank form on opening

  • Thread starter Thread starter John
  • Start date Start date
J

John

When I open a form, it fills in all the information from
the last time the form was saved. I want to open the form
as a new blank form but still wish to reserve the
capacity of browisng back through other previously opened
forms.

I would appreciate help in resolving this.

Thanks,

John
 
One way is to use a macro in the OnLoad event to go to a
new record as follows:
Action: GoToRecord
Object Type: Form
Object Name: {The name of your form}
Record: Next
 
Back
Top