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
 
Back
Top