我在Excel中创建了2个表单,userform1
和userform2
。如何设置userform2
的标题,以便显示textbox1
userform1
中textbox1
的内容,并在cmd
的值发生变化时自行更新?
答案 0 :(得分:1)
正如Rory所提到的here,只需将其添加到UserForm1
TextBox1
更改子。
将以下脚本粘贴到UserForm1
的代码部分。
Private Sub TextBox1_Change()
'Assign the TextBox Text to a variant
SomeText = TextBox1.Text
'Set the UserForm2 Caption to the variant
UserForm2.Caption = SomeText
End Sub
要将脚本粘贴到UserForm
的代码部分,请双击VBA左侧窗口中的Userform
"项目窗口"然后按键盘上的F7按钮访问UserForm
的代码部分,然后将代码粘贴到页面底部。