我想编辑底部导航按钮的代码。我不想添加自定义按钮。
我将在其中添加两行代码。
DoCmd.GoToRecord , "", acNext
Me.VendorList.Value = Me.VendorNo
答案 0 :(得分:1)
如果您想在记录更改时执行代码,可以使用表单On Current
事件:
Private Sub Form_Current()
Me.VendorList.Value = Me.VendorNo
End Sub
这也会在加载表单时触发,我想这是你想要的。