If you are wanting to automatically open the form to a new record;
In Form design, create a command button to open a form;
in the On Click event, select Event Procedure; then type in the following;
DoCmd.OpenForm "FormName"
DoCmd.GoToRecord , , AcNewRec
Hope this helps.
Thomas Bailey...