Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在处理一个访问表单,其中执行 Table1 的数据输入。
将行添加到表后,我想将表单刷新为其初始状态,以便准备好输入第二条记录。
有人可以帮我弄这个吗?
我相信您正在寻找的是: 在您的保存程序结束时,添加:
DoCmd.GoToRecord acDataForm, Me.Name, acNewRec
Insert this code line in the AfterUpdate event of the form:
Private Sub Form_AfterUpdate() Me.Requery End Sub