New Record Entry

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.
 
G

GVaught

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
 
Top