G Guest Mar 22, 2005 #1 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
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
G Guest Mar 22, 2005 #2 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
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 Mar 22, 2005 #3 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 Click to expand... 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]
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 Click to expand... 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]