ms access open form to new record

The solution for “ms access open form to new record” can be found here. The following code will assist you in solving the problem.

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

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts