Open to a new form

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?
 
K

Ken Snell [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top