R Roger on Excel Dec 2, 2009 #1 How does one make a Userform title bar caption Equal the contents of Textbox1? Can anyone help? Thanks, Roger
How does one make a Userform title bar caption Equal the contents of Textbox1? Can anyone help? Thanks, Roger
J Jacob Skaria Dec 2, 2009 #2 You can try Private Sub TextBox1_Change() UserForm1.Caption = TextBox1.Text End Sub or you can use Textbox1_Exit event...
You can try Private Sub TextBox1_Change() UserForm1.Caption = TextBox1.Text End Sub or you can use Textbox1_Exit event...
R Roger on Excel Dec 2, 2009 #3 Thanks Jacob - works nicely Roger Jacob Skaria said: You can try Private Sub TextBox1_Change() UserForm1.Caption = TextBox1.Text End Sub or you can use Textbox1_Exit event... Click to expand...
Thanks Jacob - works nicely Roger Jacob Skaria said: You can try Private Sub TextBox1_Change() UserForm1.Caption = TextBox1.Text End Sub or you can use Textbox1_Exit event... Click to expand...