Well, try this.
Add the following code to the On Open event of the form:
Private Sub Form_Open(Cancel As Integer)
DoCmd.GoToRecord acDataForm, "yourFormName", acNewRec
End Sub
Change "yourFormName" (must have quotes) to the name of your form.
HTH
RDH
[This message has been edited by R. Hicks (edited 04-06-2000).]