J
jonathanwilkins
Guest
I'm trying to make a form so that it opens up to a blank/new record. Any tips? Can't seem to figure it out.
Thanks, Jonathan
Thanks, Jonathan
This would indicate that the code is not executing when the Form Loads.Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRec
End Sub
I added the last three lines per the instructions in this thred but my form still opens to the first record. any advice?
Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRec
End Sub
I'm trying to make a form so that it opens up to a blank/new record. Any tips? Can't seem to figure it out.
Thanks, Jonathan
Also, look into the DataEntry property of a form. Setting to true will open the form to a new record without any code.