Open to a new form

  • Thread starter Thread starter Steven
  • Start date Start date
S

Steven

I have a database based on one form with about 4000
entries. On opening the database, I wish it to go to a
new blank form, rather than Entry No.1. How can I do this?
 
Do you still want all the already existing records to show in the form? You
just want to have the form start on the new record? If yes, then use the
form's OnOpen event procedure to move to a new record:

Private Sub Form_Load()
Me.Recordset.AddNew
End Sub
 
Back
Top