View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Todd Huttenstine[_3_] Todd Huttenstine[_3_] is offline
external usenet poster
 
Posts: 68
Default Highlighting Textbox1 Value when form initializes.

thanx
"Chip Pearson" wrote in message
...
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

"Todd Huttenstine" wrote in message
...
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