Hi,
I need to all text in a TextBox was selected when the user goes into it.
While Click event seems not work, what can I do?
Tanks!
Cheers
Daniel
--
http://www.danielmoth.com/Blog/
"José Manuel (Computer Xàbia)" <jmes...@computerxabia.com> wrote in
message news:eq%236o1l7...@TK2MSFTNGP09.phx.gbl...
Any suggestions?
Add a windows.forms.timer to your form with a very small interval (e.g.
15ms)
in the got focus event: tmr.Enabled = true
in the tick event: tmr.Enabled=false; tb.SelectAll
Cheers
Daniel
--
http://www.danielmoth.com/Blog/
"José Manuel (Computer Xàbia)" <jmes...@computerxabia.com> wrote in
message news:eWqt8Up7...@TK2MSFTNGP12.phx.gbl...