Cursor positioning in TextBox

  • Thread starter Thread starter Dmitry Karneyev
  • Start date Start date
If you know the position of your symbol, you can do:

this.yourTextBox.Focus(); // Not necessary
this.yourTextBox.Select(positionOfYourSymbol,0);

Best regards,
 
Back
Top