

ID: 464
Viewed: 3608
Added: Aug 19, 2002
Version:



Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



Thank you for your vote. Please wait...
It appears you already voted for this snippet
It appears your vote value was empty


Tips: Selecting text in a TextBox on focus
Create a new form and add a text box to it. Then copy and paste this code into general declarations sections of the form. Press F5 to run the sample. When the cursor enters the textbox, the text will be highlighted.
Create a new form and add a text box to it. Then copy and paste this code into general declarations sections of the form. Press F5 to run the sample. When the cursor enters the textbox, the text will be highlighted.
Highlight all by clicking in box
<!---Declaration--->
none
Highlight All
<!---Code--->
Private Sub Text1_GotFocus()
Call HighlightContents(Text1)
End Sub
Public Sub HighlightContents(TextBoxControl As Control)
With ctlName
.SelStart = 0
.SelLength = Len(TextBoxControl )
End With
End Sub;
No Comments to show


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.
Adding your comment. Please wait...
Thanks for adding your comment!. After further review it will be added.
There was a problem adding your comment. Please try again.
Please complete all the fields in the form before sending.