[RESOLVED] RichTextBox annoying scrolling?
Basically, I have this timer system set up so that every 2 seconds a new line of code is added to my RichTextBox. The problem is, when the box fills up the scrollbar doesn't automatically go down. Every time a new line is added by the program, the user has to scroll down manually to see it. I would think there would be a simple solution to this, but I'm a VB n00b, so help is appreciated.
Re: RichTextBox annoying scrolling?
Your problem is almost certainly that you are setting the Text property rather than calling the AppendText method.
Re: RichTextBox annoying scrolling?
You are correct - that makes things much easier.
Amazing, all the things I don't know.
Thanks-
Re: [RESOLVED] RichTextBox annoying scrolling?
Just an additional note,
I also had to change my output textbox from a RichTextBox to a regular Multiline Textbox