Steve
You could use this code
Private Sub CmdAddNewRec_Click()
On Error GoTo Err_CmdAddNewRec_Click
DoCmd.GoToRecord , , acNewRec
Exit_CmdAddNewRec_Click:
Exit Sub
Err_CmdAddNewRec_Click:
MsgBox Err.Description
Resume Exit_CmdAddNewRec_Click
End Sub
If you just put a cmd button on your form by using the wizard access will generate the above code anyway.
HTH
Hay