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.
AccessからVBからクエリを呼び出そうとしていますが、いくつか問題があります。コードは次のとおりです。
Dim myQuery As QueryDefs myQuery("2012Patient_q").Execute
しかし、これは機能しません。私はそれをグーグルで検索しようとしましたが、役に立ちませんでした。ここで何が欠けていますか?
ありがとう
コードはおそらく次のようになります。
Dim myQuery As QueryDef ' no "s" Set myQuery = CurrentDB.QueryDefs("2012Patient_q") myQuery.Execute
または、中間変数なしで簡単に言えば、次のようになります。
CurrentDB.QueryDefs("2012Patient_q").Execute