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 的更改事件处理程序中包含该代码。