I\'ve got a simple form with RichTextBox on it. In Load event, I write some text to RichTextBox and now I want to set cursor location to the end of this text so I can add someth
Try :
richTextBox1.SelectionStart = richTextBox1.Text.Length; richTextBox1.Focus();