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.
我正在使用访问权限来创建表单。
我想知道单击按钮时如何获取当前记录ID。我在 vb 按钮代码中尝试了“Me.CurrentRecord”。但这不起作用。任何人都可以帮忙吗?
Private Sub save_record_Enter() Me.CurrentRecord End Sub
您可以在 MS Access 中按名称引用基础记录集和表单控件中的字段,例如:
Me.ID MsgBox Me.ID Me.txtID