📜  ms 访问打开表单到新记录 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:56.893000             🧑  作者: Mango

代码示例1
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