Scrolling in (rich)text box? 
Author Message
 Scrolling in (rich)text box?

I'm writing an app which outputs results to a rich text box.
I don't like the scroll bars look on the form since the text box
itself is pretty small.

Right now when the (small amount of) text scrolls off the bottom of
the box, it just scrolls off the bottom of the box.

I click in ther box and down-arrow to the bottom to view the rest.

Can I set it up so it starts to scroll up after it hits the bottom of
the box and I can then click in the box and up-arrow if I need to see
the first lines?

Thanks afforhand

Tony!



Fri, 03 Sep 2004 02:07:35 GMT  
 Scrolling in (rich)text box?
 You can use SendMessage with EM_LINESCROLL to scroll the RTB up or down.
 It seems like it will be tricky to keep track of it but with
RTB.GetLineFromChar(len(RTB.Text))
and EM_GETFIRSTVISIBLELINE you can know which line is at the top and how
many lines there are.
--
--

Quote:
> I'm writing an app which outputs results to a rich text box.
> I don't like the scroll bars look on the form since the text box
> itself is pretty small.

> Right now when the (small amount of) text scrolls off the bottom of
> the box, it just scrolls off the bottom of the box.

> I click in ther box and down-arrow to the bottom to view the rest.

> Can I set it up so it starts to scroll up after it hits the bottom of
> the box and I can then click in the box and up-arrow if I need to see
> the first lines?

> Thanks afforhand

> Tony!



Fri, 03 Sep 2004 23:08:03 GMT  
 Scrolling in (rich)text box?
Tony,

Have you tried this ?

Sub RichText1_Change()
    With RichText1
        .SelStart = Len( .Text )
    End With
End Sub

HTH,
    Phill  W.



Fri, 03 Sep 2004 23:16:02 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Detecting scroll for Rich Text Box (subclassing)

2. Rich Text Box vs. Text Box Scrolling

3. Help: Please tell me how to scroll the Rich Text Box!

4. Rich Text Box & scroll bar

5. Rich text box & scroll bar

6. Rich Text Box Scrolling

7. Scrolling Rich Text Format boxes within program

8. Scrolling Rich Text Box..

9. Help with scrolling rich/text box to a position using button

10. rich text box, remembering view / position of scroll bars

11. Run-time control of rich text box scroll bar visibility

12. Rich Text Box Control Scroll Bars

 

 
Powered by phpBB® Forum Software