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.
別のオプション ボタンを選択したり、スピン ボタンで切り替えたりしたときに、テキスト ボックスの値を動的に変更する方法に興味があります。私がこれまでに試したことは Userform1.textbox1.value = spinbutton1 です
これを行うより良い方法はありますか??
ありがとう。
さて、あなたは正しい軌道に乗っていますが、次のようになります。
Userform1.textbox1.value = spinbutton1.value
そして、spinbutton1 の変更イベント ハンドラー内にそのコードを含める必要があります。