up vote 3 down vote favorite
share [g+] share [fb]

I have some controls like TWebBrowser, TRichText etc. which I want to scroll them (horizontally and/or vertically) from my program.

How do I achieve this?

PS: I think that it is doable by sending some messages to their handles but I don't know now which ones.

TIA.

link|improve this question

58% accept rate
feedback

2 Answers

up vote 2 down vote accepted

WM_VSCROLL and/or WM_HSCROLL. GetScrollInfo() to find out how far you can go.

link|improve this answer
feedback

For edit controls, look at the EM_SCROLL and EM_LINESCROLL messages.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.