|
-
Nov 3rd, 2000, 12:20 PM
#1
Thread Starter
Member
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.
-
Nov 3rd, 2000, 12:28 PM
#2
Fanatic Member
Try setting the Scrollbars property of the RichTextBox.
-
Nov 3rd, 2000, 12:37 PM
#3
Thread Starter
Member
?
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?
-
Nov 3rd, 2000, 12:50 PM
#4
_______
<?>
[code]
Private Sub RichTextBox1_GotFocus()
RichTextBox1.SelStart = Len(RichTextBox1.Text)
End Sub
[code]
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
-
Nov 3rd, 2000, 01:02 PM
#5
Thread Starter
Member
HeSaidJoe,
Thanks alot for that code. It works great.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|