How do I highlight the contents of a textbox when gets focus?
Printable View
How do I highlight the contents of a textbox when gets focus?
I think you can do this:
vb.net Code:
If TextBox1.Focused = True Then TextBox1.SelectAll() End If
Hope it helps :D
A little simpler than VB6. Thankyou.
If I have 10 textboxes, can I handle them under the same event?
How do I group them together?