Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I need the rich text box to scroll automatically

Status
Not open for further replies.

kar202

Programmer
Jun 28, 2002
16
US
As the text fills up the text box, I would like for the rich text control to scroll automatically, so the user doesn't have to keep scrolling with the bar. Is there a property that addresses this or do I need to code something---and if so, help would be appreciated. Thanks.
 
When you add the text put
RichTextBox1.SelStart = Len(RichTextBox1.Text)
where RichTextBox1 is the name of the rich text box.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top