Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5971095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:28:08+00:00 2026-05-22T20:28:08+00:00

How to use Tscrollbar to Richedit. My purpose is to separate the scrollbar in

  • 0

How to use Tscrollbar to Richedit.

My purpose is to separate the scrollbar in a deferent panel.

is it possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T20:28:08+00:00Added an answer on May 22, 2026 at 8:28 pm

    You can try this:

    procedure TForm1.ScrollBar1Scroll(Sender: TObject; ScrollCode: TScrollCode; var ScrollPos: Integer);
    var
      WParam: longint;
    
    begin
      case ScrollCode of
        scLineUp: WParam := SB_LINEUP;
        scLineDown: WParam := SB_LINEDOWN;
        scPageUp: WParam := SB_PAGEUP;
        scPageDown: WParam := SB_PAGEDOWN;
        scEndScroll: WParam := SB_ENDSCROLL;
        scPosition: WParam := SB_THUMBPOSITION;
        scTrack: WParam := SB_THUMBTRACK;
        else
          exit;
      end;
      WParam := WParam or word(ScrollPos) shl 16;
    
      RichEdit1.Perform(WM_VSCROLL, WParam, 0);
    end;
    
    procedure TForm1.RichEdit1Change(Sender: TObject);
    var
      ScrollInfo: TScrollInfo;
    
    begin
      FillChar(ScrollInfo, SizeOF(ScrollInfo), 0);
      ScrollInfo.cbSize := SizeOf(ScrollInfo);
      ScrollInfo.fMask := SIF_RANGE or SIF_PAGE or SIF_POS;
      if GetScrollInfo(RichEdit1.Handle, SB_VERT, ScrollInfo) then
      begin
        ScrollBar1.Max := ScrollInfo.nMax;
        ScrollBar1.Min := ScrollInfo.nMin;
        ScrollBar1.PageSize := ScrollInfo.nPage;
        ScrollBar1.Position := ScrollInfo.nPos;
      end;
    end;
    
    procedure TForm1.FormCreate(Sender: TObject);
    begin
      RichEdit1Change(self);
    end;
    

    It synchronizes Scrollbar1: TScrollBar with the scroll info of the RichEdit upon any change in it and simulates WM_VSCROLL messages coming from the scrollbar. However, it requires the RichEdit to have its own vertical scrollbar visible, because the scroll info is not updated, if it is not visible.

    There is AFAIK no other way to get the scroll data, simply because the RichEdit control doesn’t create them if not needed (ssNone in ScrollBars property).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Firefox 3.5.8 on Windows, I get a vertical scrollbar when I use this
Im working on a program which moves a panel within a form. I use
i'm trying to use a scrollbar plugin written with jquery : tinyscrollbar. you can
Hi I use iframe for my facebook apps. The iframe gets a scrollbar around
Is it possible to use a third party scroll control inside a FlowLayoutPanel? Thing
I have to use TScrollbar on a TScrollBox(Yes,it seems bad idea,but I have to)
I'm trying to use the jQuery Datepicker and a JavaCcript scrollbar on one page.
I'm attempting to use a custom Android vertical scrollbar widget that seems to work
Dear Stacktoverflow, can you show me an example of how to use a QScrollBar?
'''use Jython''' import shutil print dir(shutil) There is no, shutil.move, how does one move

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.