Autoselect in the Textbox

  • Thread starter Thread starter Frank Rizzo
  • Start date Start date
F

Frank Rizzo

I set the Text property for the Textbox at design-time. When I run the
app, the Text in the Textbox is preselected. How can I disable this
functionality?

Thanks
Frank
 
* Frank Rizzo said:
I set the Text property for the Textbox at design-time. When I run
the app, the Text in the Textbox is preselected. How can I disable
this functionality?

Call the textbox's 'Select' method ('TextBox1.Select(0, 0)').
 
Back
Top