New Record

F

FC

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
 
L

L. R. Hurtado

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
 
J

John Vinson

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]
 
Top