Open a form with new record displayed

R

rzlawr

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.
 
S

SteveS

Open the form in design view.
Open the properties dialog
Click on the DATE tab
Set the "Data Entry" property to "Yes"

HTH
 
J

jokobe

when opening a form via code you can use:

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