📅  最后修改于: 2022-03-11 14:51:56.893000             🧑  作者: Mango
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