New Record on open of form

H

Hughie

My multiuser form is for new record input only. How do I set the form to
open to a new blank record into which user can input? Thanks much.
 
O

Ofer

Set the DataEntry Property of the form to true
Or, if you open the form with a command line, then you can use the acFormAdd

docmd.OpenForm "FormName",,,,acFormAdd
 
Top