need form to start with new entry

P

pat67

I have a form I am using to update a table. However, every time I open
the form, it shows the first entry and I have to scroll through to the
end. How do I enable it to open to a new entry every time?
 
L

Linq Adams via AccessMonster.com

This little bit of code will do it:

Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRec
End Sub
 
Top