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.
ユーザーがリスト ボックス内の項目をダブルクリックし、選択した値 (および SQL を使用して関連する値) を用意したテーブルに入力できるようにしようとしています。
私が持っているコードを投稿しますが、真実はどこから始めればいいのかわからないので、どんな助けでも大歓迎です。
私のリスト ボックス (listResult) には、テーブル (株式変換) に入力したい 3 つの列があります。
前もって感謝します、
ボブ・P
1 つの可能性:
Dim qdf As QueryDef 'Temporary query Set qdf = CurrentDb.CreateQueryDef( _ "", "Insert Into Table1 (atext,anumber) values ([p1],[p2])") qdf.Parameters("[p1]") = "abc" qdf.Parameters("[p2]") = 20 qdf.Execute dbFailOnError