New Record

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do i get the form to open to a new blank record on initial startup,
rather that the first record of the DB?
Thanks
 
Hello:

You can write a macro to run onopen event, which send the form to a new
record, this way you always will go to a new record as soon as the form opens
 
How do i get the form to open to a new blank record on initial startup,
rather that the first record of the DB?
Thanks

One way is to put code in the Form's Open event:

Private Sub Form_Open(Cancel as Integer)
DoCmd.GoToRecord acForm, Me.Name, acCmdNewRecord
End Sub


John W. Vinson[MVP]
 
Back
Top