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 6717159
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:49:11+00:00 2026-05-26T08:49:11+00:00

I found this link WPF_Example , but it is written in WPF. I am

  • 0

I found this link WPF_Example, but it is written in WPF. I am not programming in WPF, I am doing this in Windows Forms, and have no real reason to want to embed a WPF RichTextBox into my app just to obtain the answer I need.

Is there not a way, using WindowsForms (NOT WPF), to figure out if the RichTextBox scroll-bar thumb is at the bottom of the scroll bar?

The purpose of this is to allow our users, who are viewing the chat in the RTF box, to scroll up, and when text is added, NOT SCROLL DOWN, if they are scrolled up. Think of how mIRC handles chat; if you are at the bottom of the chat box, text will auto scroll into view; if you move up even one line, text is added w/o having to scroll.

I need to replicate that. I did find this link here on SO: List_ViewScroll, but i am not sure if it applies in this case.

Any help would be greatly appriciated 🙂

RESOLUTION

Using this class, I was able to get it to work. Thank you very much to the person below who pointed it out, and clarified some bits of it:

internal class Scrollinfo
{
    public const uint ObjidVscroll = 0xFFFFFFFB;

    [DllImport("user32.dll", SetLastError = true, EntryPoint = "GetScrollBarInfo")]
    private static extern int GetScrollBarInfo(IntPtr hWnd,
                                               uint idObject,
                                               ref Scrollbarinfo psbi);

    internal static bool CheckBottom(RichTextBox rtb)
    {


        var info = new Scrollbarinfo();
        info.CbSize = Marshal.SizeOf(info);

        var res = GetScrollBarInfo(rtb.Handle,
                                   ObjidVscroll,
                                   ref info);

        var isAtBottom = info.XyThumbBottom > (info.RcScrollBar.Bottom - info.RcScrollBar.Top - (info.DxyLineButton*2));
        return isAtBottom;
    }
}

public struct Scrollbarinfo
{
    public int CbSize; 
    public Rect RcScrollBar;
    public int DxyLineButton;
    public int XyThumbTop;
    public int XyThumbBottom;
    public int Reserved;
    [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)]
    public int[] Rgstate;
}

public struct Rect
{
    public int Left;
    public int Top;
    public int Right;
    public int Bottom;
}       
  • 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-26T08:49:11+00:00Added an answer on May 26, 2026 at 8:49 am

    So, the answer to this question is not incredibly complicated, but it is fairly verbose. The key is the Win32 API function GetScrollBarInfo, which is fairly easy to call from C#. You’ll need to the following definitions in your form to make the call…

    [DllImport("user32.dll", SetLastError = true, EntryPoint = "GetScrollBarInfo")]
    private static extern int GetScrollBarInfo(IntPtr hWnd,
        uint idObject, ref SCROLLBARINFO psbi);
    
    public struct SCROLLBARINFO {
        public int cbSize;
        public RECT rcScrollBar;
        public int dxyLineButton;
        public int xyThumbTop;
        public int xyThumbBottom;
        public int reserved;
        [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)]
        public int[] rgstate;
    }
    
    public struct RECT {
        public int Left;
        public int Top;
        public int Right;
        public int Bottom;
    }        
    

    To test out GetScrollBarInfo, consider creating a form with a RichTextBox and a button. In the click event for the button, make the following call (assuming your RichTextBox is named “richTextBox1”)…

    uint OBJID_VSCROLL = 0xFFFFFFFB;
    
    SCROLLBARINFO info = new SCROLLBARINFO();
    info.cbSize = Marshal.SizeOf(info);
    
    int res = GetScrollBarInfo(richTextBox1.Handle, OBJID_VSCROLL, ref info);
    bool isAtBottom = info.xyThumbBottom >
        (info.rcScrollBar.Bottom - info.rcScrollBar.Top - 20);
    

    After the call, a simple formula can determine whether or not the scroll bar thumb is at the bottom. Essentially, info.rcScrollBar.Bottom and info.rcScrollBar.Top are positions on the screen and the difference between them will tell you the size of the scroll bar no matter where it is on the screen. Meanwhile, info.xyThumbBottom marks the position of the bottom of the thumb button. The “20” is basically guess as to the size of the scroll bar’s down arrow. You see, the bottom of the thumb button will never actually be all the way to the bottom of the scroll bar, (which is what the difference gives you) so you have to take off an additional amount for the down button. This is admittedly somewhat volatile given that the button’s size will be different depending on users’ configuration, but this should be enough to get you started.

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

Sidebar

Related Questions

I have found some info on the subject ( like this link) , but
I have found this link: Detect Antivirus on Windows using C# However when I
I found this link http://artis.imag.fr/~Xavier.Decoret/resources/glsl-mode/ , but there isn't a lot of description around
i have a problem using the Catch Clipboard Events code found on this link
I have found this link http://smartclient.codeplex.com/ which has some updates for vs 2010 ....
I work in C#, .Net 4.0, but I have a Windows Forms application. I
I have found articles saying this is possible, but what are the issues? Is
Does Javascript supports Sets(list with unique objects only) ? I have found this link
I want a filter for my ListView in Android. I have found this link
i found this link : initialize UITableViewController with [super initWithStyle:UITableViewStyleGrouped] but i don't understand

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.