Precise position in a rich text box

Hi all.



I have a problem:

my richtextbox has a scroll bar as it has more lines than its height. Is it possible to 'drag' it down virtually (e.g. when i press a button), it goes to the bottom



Thanks, James.



Answer this question

Precise position in a rich text box

  • MarcoD

    Me.RichTextBox1.SelectionStart = Me.RichTextBox1.TextLength

    Me.RichTextBox1.ScrollToCaret()



  • Precise position in a rich text box