-
Hello,
I am wondering if there is a way to reverse a vertical scroll bar to go down to up instead up to down.
Example- In mIRc chat rooms, when a user types something in a room the scroll bar is set allthe way down in the textbox instead of at the top.
I'm asking this because I am trying to make something similiar to that. I am using a richtextbox, but when I input lines the the scroll bar stays at the top while text is still being entered and I have to manually scroll down.
Sorry if this isnt making much sense.
Any help would be appreciated.
-
Try setting the Scrollbars property of the RichTextBox.
-
?
Scroll Bar Properties
The only properties I know of or see are.
RichTextBox1.scrollbars = rtfboth, rtfvertical, rtfhorizontal, rtfnone.
That is all. :(
Any other things im misssing?
-
<?>
[code]
Private Sub RichTextBox1_GotFocus()
RichTextBox1.SelStart = Len(RichTextBox1.Text)
End Sub
[code]
-
HeSaidJoe,
Thanks alot for that code. It works great.