Open a form with new record displayed

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

Guest

Can anyone tell me how to set a form so that when I open it, it is displaying
'new record' each time (and not previous data)?
Thanks.
 
Open the form in design view.
Open the properties dialog
Click on the DATE tab
Set the "Data Entry" property to "Yes"

HTH
 
when opening a form via code you can use:

DoCmd.OpenForm "my_form", acNormal, , , acFormAdd
 

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

Back
Top