Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rich Edit Scrolling

Status
Not open for further replies.

cyprus106

Programmer
Apr 30, 2001
654
How do I scroll a rich edit through code? Basically, I want it to scroll without the user having to scroll it himself. And suggestions? Cyprus
 
I knew I'd seen this but it took me some time to find it. You need to use the Perform method. For example,
Code:
 RichEdit1->Perform(EM_SCROLL,SB_LINEDOWN,0);
will scroll the edit box down by one. James P. Cottingham

I am the Unknown lead by the Unknowing.
I have done so much with so little
for so long that I am now qualified
to do anything with nothing.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top