Highlighting Textbox1 Value when form initializes.

T

Todd Huttenstine

I have a userform and would like on userform initialization to highlight the
text in textbox1. What would the code be for this?


Thanx

Todd Huttenstine
 
C

Chip Pearson

Todd,

Use code like the following:

Private Sub UserForm_Initialize()
With Me.TextBox1
.SelStart = 0
.SelLength = Len(.Text)
End With
End Sub

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
T

Todd Huttenstine

thanx
Chip Pearson said:
Todd,

Use code like the following:

Private Sub UserForm_Initialize()
With Me.TextBox1
.SelStart = 0
.SelLength = Len(.Text)
End With
End Sub

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Top