|
Author: Jenny Nguyen
|
|
How do you position textbox cursor at end of text? You often need to place the cursor at the end of the text when you are in an edit mode. For example you click on the edit button to have the form goes into the edit mode and you would like to have the user ready to edit the text without having them to click on the text box to place the cursor at the end of the text. SAMPLE CODE: textBox1.SelectionStart = textBox1.Text.Length + 1;
|