如何使用'GoToRecord'命令通过主键 - VBA Access 2010获取记录

时间:2012-09-04 04:02:56

标签: forms vba ms-access

如何使用'GoToRecord'命令通过主键获取记录?

1 个答案:

答案 0 :(得分:11)

我怀疑你希望移动到主键的记录。

MyKey = 3
With Me.Recordset
    .FindFirst "ID=" & MyKey

    If .NoMatch Then
        MsgBox "Not found"
    End If
End With