Answers for "ms access open form to new record"

VBA
1

ms access open form to new record

In the Form_Load event use the GoToRecord Method of DoCmd and pass in acNewRec for the Offset.

Private Sub Form_Load()
   DoCmd.GoToRecord , , acNewRec
End Sub
Posted by: Guest on August-02-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language