MS Access查看底部导航的代码?

时间:2018-04-16 06:55:00

标签: ms-access access-vba

我想编辑底部导航按钮的代码。我不想添加自定义按钮。

enter image description here

我将在其中添加两行代码。

DoCmd.GoToRecord , "", acNext
Me.VendorList.Value = Me.VendorNo

1 个答案:

答案 0 :(得分:1)

如果您想在记录更改时执行代码,可以使用表单On Current事件:

Private Sub Form_Current()
    Me.VendorList.Value = Me.VendorNo
End Sub

这也会在加载表单时触发,我想这是你想要的。