Open form to blank record

M

matthew

i have a form based on a table. is there a way to have
the form open to a new blank record each time? any help
is appreciated as always. thankyou. matt
 
R

Rick B

Private Sub Form_Open(Cancel As Integer)
DoCmd.GoToRecord , , acNewRec
End Sub






i have a form based on a table. is there a way to have
the form open to a new blank record each time? any help
is appreciated as always. thankyou. matt
 
Top