scrollbar

Custom painting Windows Forms Scrollbar?

I know how to do custom drawing of a standalone Windows Forms ScrollBar because there are plenty of examples at places like codeproject.com. But how do you custom draw the scrollbars in controls you do not create yourself? For example a Panel can show scrollbars but how would I ensure that the scrollbars it shows are custom drawn? Or m...

How to manipulate the LargeChange and SmallChange on a scrollbar to work

Hi there. I have a number of panels in a single window in C# application and I created 2 scrollbars, one for horizontal and one vertical. This is what I currently have: I have 1 variable and that is the total height all the items take & need. Here is my code on scroll change: for (int i = 0; i < this._splitMainView.Panel2.Controls.C...

How to move scroll bar up by one line? (In C# RichTextBox)

For my C# RichTextBox, I want to programmatically do the same thing as clicking the up arrow at the top of a vertical scroll bar, which moves the RichTextBox display up by one line. What is the code for this? Thanks! ...

Raw Java 2D implementation of a scrollbar

How would I go about writing my own scrollbar using standard Java 2D. I really don't want to use swing, and I've already made up my own component parts for everything else such as buttons etc. I'm not really looking for code, rather the math involved in the event changes and the drawing. ...

How to enable buttons when scroll bar hits bottom with Win32?

I'm writing a license agreement dialog box with Win32 and I'm stumped. As usual with these things I want the "accept/don't accept" buttons to become enabled when the slider of the scroll bar of the richedit control hits bottom, but I can't find a way to get notified of that event. The earliest I've been able to learn about it is when t...

How can I change the size of scroll box(thumb) of a CScrollBar?

I can't find any method to change it. Any help will be appreciated! ...

Why OnVScroll() method enters only once?

I design a class which derives from CScrollBar in a dialog-based MFC application. In the dialog class (MyScrollbarDlg), I set the ON_WM_VSCROLL message and declare the OnVSCroll method in the .h file. I also Implement the OnVScroll() method in the corresponding .cpp file. But to my surprise, when I click the arrow at the buttom of of the...

Make a scrollable element stay "at the bottom" while adding content.

I am building a utility page for a web app that I am working on. I have an element that I want to use as a "console" of sorts. I get entries for the console via Ajax calls (using prototype's Ajax.PeriodicalUpdater). The problem I'm having is that when I insert new lines to the bottom of the "console", the scrollbar stays in the initi...

WS_VSCROLL, CreateWindow style works, SetWindowLong doesnt

When i do wnd = CreateWindow("EDIT", 0, WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL | ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL | ES_WANTRETURN, x, y, w, h, parentWnd, NULL, NULL, NULL); everything is fine, however if i remove the WS_VSCROLL and WS_HSCROLL then do the below, i do not get them thus have i...

Flex: Prevent scrollbar from covering content when automatically displayed.

I have a canvas in Flex that shall be able only to be scrolled in vertical direction, so I set the attributes of the canvas as follows: verticalScrollPolicy="auto" horizontalScrollPolicy="off" The problem here is that the vertical scrollbar covers the content when it appears - altough there is enough horizontal room left. I would have...

html - scrollbar jump by itself

Hi all, I'm experiencing this weird problem which my scrollbar jumps by itself to somewhere that I don't want it to. I have a table with scrollbar inside this page, if the user have a smaller screen, the page automatically adds a scrollbar. If I scroll down to the bottom of the table and click on it, the scrollbar of the page jumps up...

Javascript Vertical Scroller

Is there anyone ever used a free vertical scroller that is compatable with both Firefox and IE? If so is it possible to share it here as an answer? Thanks David ...

How to disable scrollbars with JavaScript?

I need to lock the browser scrollbars when I show a div that represent a modal window in Internet Explorer 7 only. Googling I found that I can use document.body.style.overflow='hidden' but this doesn't work for IE7. I also tried with document.body.scroll="no" which works but only after I mouse over the scrollbar :-S Does anybody knows a...

ASP.NET: How to hide ListBox control vertical scrollbar?

I have tried CSS: overflow: auto. It doesn't work. Any way to achieve it? Do I need to create my custom control as I have seen it on ASP.NET forum? ...

ScrollBar in DataGridView

I have a winform in vs2008 that contains a DataGridView. The datagrid contains a list with several columns. These are fixed width, exept one that I have set up to take whatever space is left and fill the width of the view. The winform is resizeable in all directions. The issue I am trying to solve is that when I increase the vertical si...

Customizing the scroll bar

Can we change the appearance of scroll bar? I mean we want to change the image of the scroll bar, so it can match our web theme. more specifically, i'm pointing at the scroll bar in <div style=overflow:auto> If it can't be done, then is there some other way to make our own "scroll bar", which use our own image? Perhaps if we're insa...

Delphi - How to set vertical scrollbar in TStringGrid, always visible

I'm using Delphi 2007 for Win32 and need to set the vertical scrollbar in TstringGrid to always be visible. How do you do that? ...

How to place a ScrollViewer on top of the content it should scroll

I would like to put my ScrollViewer in such a way that it overlaps/sits on top of the content it scrolls. I would set the Opacity of the ScrollViewer so that the content is visible underneath. As far as I understand the default ScrollViewer, this doesn't seem to be possible out of the box since the content is nested inside the ScrollVie...

Auto-size controls in .NET CF to avoid horizontal scrolling?

I am developing a form in .NET Compact Framework, which hosts a variable number of controls. Every control should have the same width as the form. When there are only a few controls, no vertical scrollbar appears. When there are more controls than they can fit in one form, a vertical scrollbar appears. The width of the controls should t...

WPF scrollbar should change value more frequently

I currently tried to force a wpf scrollbar to fire it's value changes for often, if the user presses the scroll-up or -down button, and holds the mouse button. I tried to use a style like: <Style TargetType="{x:Type RepeatButton}"> <Setter Property="Interval" Value="20"/> <Setter Property="Delay" Value="20"/> </Style> Or to s...