An application sends the SBM_SETRANGEREDRAW message to a scroll bar control to set the minimum and maximum position values and to redraw the control.
SBM_SETRANGEREDRAW
wParam = (WPARAM) nMinPos; // minimum scrolling position
lParam = (LPARAM) nMaxPos // maximum scrolling position
If the position of the scroll box changed, the return value is the previous position of the scroll box; otherwise, it is zero.
The default minimum and maximum position values are zero. The difference between the values specified by the nMinPos and nMaxPos parameters must not be greater than the value of MAXLONG.
If the minimum and maximum position values are equal, the scroll bar control is hidden and, in effect, disabled.
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Requires version 2.0 or later.
Header: Declared in winuser.h.
Scroll Bars Overview, Scroll Bar Messages, SBM_GETPOS, SBM_GETRANGE, SBM_SETPOS, SBM_SETRANGE