PC Review
Forums
Newsgroups
Microsoft DotNet
Microsoft Dot NET Framework Forms
RichTextBox - how to disable AutoScroll on AppendText method
Forums
Newsgroups
Microsoft DotNet
Microsoft Dot NET Framework Forms
RichTextBox - how to disable AutoScroll on AppendText method
![]() |
RichTextBox - how to disable AutoScroll on AppendText method |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
Every time when I add text in my RichTextBox control via AppendText method - the control is autoscrolled to the end of text. I need avoid this effect. How can I do it? Thanks in advance! I'll very appreciate any ideas! ![]() |
|
|
|
#2 |
|
Guest
Posts: n/a
|
you could try this control.
http://pluralsight.com/wiki/default...chTextBox2.html haven't used it extensively yet, but it seems to provide many RichTextBoz extension... -- There are 10 kinds of people in this world. Those who understand binary and those who don't. "Mr.Cyber" <Mr.Cyber@discussions.microsoft.com> wrote in message news:A78600DD-CE8D-41E9-8117-09888CE799D1@microsoft.com... > > Every time when I add text in my RichTextBox control via AppendText > method - > the control > is autoscrolled to the end of text. I need avoid this effect. How can I do > it? > > Thanks in advance! > > I'll very appreciate any ideas! ![]() |
|
|
|
#3 |
|
Guest
Posts: n/a
|
If you are having trouble with scrolling to the end of the text, you may try something like: int pos = richTextBox.SelectionStart; richTextBox.AppendText(stuff); richTextBox.SelectionStart=pos; richTextBox.ScrollToCaret(); // try with and without this line Note: when I just tried to append text to a RichTextBox, I did not see the behavior that you mentioned. Are you calling ScrollToCaret() accidentally? "Mr.Cyber" wrote: > > Every time when I add text in my RichTextBox control via AppendText method - > the control > is autoscrolled to the end of text. I need avoid this effect. How can I do it? > > Thanks in advance! > > I'll very appreciate any ideas! ![]() |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 


