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.
「GoToRecord」コマンドを使用して主キーでレコードを取得する方法は?
主キーが与えられたレコードに移動したいと考えています。
MyKey = 3 With Me.Recordset .FindFirst "ID=" & MyKey If .NoMatch Then MsgBox "Not found" End If End With