0

我正在处理一个访问表单,其中执行 Table1 的数据输入。

  • 将 Table1 链接到此表单 Form1
  • 在表单中添加了“添加记录”按钮
  • 为相同的创建构建事件以保存记录。

将行添加到表后,我想将表单刷新为其初始状态,以便准备好输入第二条记录。

有人可以帮我弄这个吗?

4

2 回答 2

0

我相信您正在寻找的是:
在您的保存程序结束时,添加:

DoCmd.GoToRecord acDataForm, Me.Name, acNewRec
于 2018-12-13T22:16:35.790 回答
0
  1. Set the form's DataEntry property to: Yes (True)
  2. Insert this code line in the AfterUpdate event of the form:

    Private Sub Form_AfterUpdate()    
        Me.Requery    
    End Sub
    
于 2018-12-14T09:29:30.320 回答