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
For winform application simple add this command SendKeys.Send("{RIGHT}"); after richTextBox1.AppendText("foo"); or richTextBox1.Paste(); then `richTextBox1.Focus();'