How do I make a Label caption update when user is done entering text in TextBox?

ijhoeq

Board Regular
Joined
Jun 20, 2018
Messages
61
I have a userform with a textbox that can be changed by the user. I would like the text entered by the user to appear in a label. How can I have the label change only after the user stops entering text (I don't want it to change while the user is typing). Can someone help me out with this? Thanks!
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
You need to use something like this:
The script runs when you exit the Textbox:
Code:
Private Sub TextBox3_Exit(ByVal Cancel As MSForms.ReturnBoolean)
'Modified  7/31/2018  10:46:31 AM  EDT
Label1.Caption = TextBox3.Value
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,885
Messages
6,175,183
Members
452,615
Latest member
bogeys2birdies

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top