Please Help

  • Thread starter Thread starter Justin
  • Start date Start date
J

Justin

Hello,
I am trying to figure out how i can make a form and enter info without it
being displayed when i go back to enter more info.
 
Hi Justin,

If I understand you correctly, you want to always open the form to a new
record...is this correct? If so, there are three ways of doing this:

1.) Set the form's Data Entry property to Yes, or
2.) Use a macro with the OpenForm action. In the lower window, set the Data
Mode to Add, or
3.) Use VBA code that is the equivalent of the above macro, ie:
DoCmd.OpenForm "NameOfForm", View:=acNormal, DataMode:=acNormal

where NameOfForm is the name of the form you wish to open.


Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
http://www.access.qbuilt.com/html/expert_contributors.html
__________________________________________
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top