标签: forms vba ms-access
如何使用'GoToRecord'命令通过主键获取记录?
答案 0 :(得分:11)
我怀疑你希望移动到主键的记录。
MyKey = 3 With Me.Recordset .FindFirst "ID=" & MyKey If .NoMatch Then MsgBox "Not found" End If End With