Pad*_*wan 7 forms ms-access vba
如何使用'GoToRecord'命令通过主键获取记录?
Fio*_*ala 11
我怀疑你希望移动到主键的记录.
MyKey = 3
With Me.Recordset
.FindFirst "ID=" & MyKey
If .NoMatch Then
MsgBox "Not found"
End If
End With
Run Code Online (Sandbox Code Playgroud)