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.
Dim maker as String Set Maker = Forms![A]![B]
これを機能させることができないようです。実行するたびに、「オブジェクトが必要です」というエラーが表示されます。これはより大きなモジュールに含まれていますが、これが私に問題を与えている唯一の側面です。
基本的に、「maker」はフォームAのBという名前のテキストボックスの内容と同等である必要があります。
助言がありますか?
オブジェクトを割り当てる場合を除いて、Setを使用しないでください。
Dim maker as String Maker = Forms![A]![B]
オブジェクトの場合:
Dim maker as Form Set Maker = Forms![A]