New Record Entry

  • Thread starter Thread starter Diane
  • Start date Start date
D

Diane

How can I automatically enter a form with the new blank
form available and keeping the other records there so I
can do a search if I need to.
 
Under the form's On Open properties write the following line between the
Private and End Sub lines

Private Sub Form_Open(Cancel As Integer)
DoCmd.GoToRecord , , acNewRec <------ write this line
End Sub
 
Back
Top