Hello Guys, at this time i will share to you the code on how to highlight all the text box
content when you set the mouse cursor on it, like shown at the image below
at the Text Box Got-focus event just place this two basic lines of Codes
Textbox1.SelStart = 0
Textbox1.SelLength = Len(Textbox1.Text)
and you're done, just press f5 and see the result
Happy Coding ^_^
The Hardest Thing to DO is to Do Nothing ^_^
content when you set the mouse cursor on it, like shown at the image below
at the Text Box Got-focus event just place this two basic lines of Codes
Textbox1.SelStart = 0
Textbox1.SelLength = Len(Textbox1.Text)
and you're done, just press f5 and see the result
Happy Coding ^_^
The Hardest Thing to DO is to Do Nothing ^_^
Leave a comment