An application sends the SBM_GETSCROLLINFO message to set the parameters of a scroll bar.
SBM_SETSCROLLINFO wParam = (WPARAM) fRedraw; // redraw flag lParam = (LPARAM) (LPSCROLLINFO) lpsi; // scroll bar parameters
The fMask member can be a combination of the following values:
|
Value |
Meaning |
|
SIF_DISABLENOSCROLL |
Disables the scroll bar instead of removing it, if the scroll bar’s new parameters make the scroll bar unnecessary. |
|
SIF_PAGE |
Sets the scroll page to the value specified in the nPage member of the SCROLLINFO structure pointed to by lpsi. |
|
SIF_POS |
Sets the scroll position to the value specified in the nPos member of the SCROLLINFO structure pointed to by lpsi. |
|
SIF_RANGE |
Sets the scroll range to the value specified in the nMin and nMax members of the SCROLLINFO structure pointed to by lpsi. |
The return value is the current position of the scroll box.
The messages that indicate scroll-bar position, WM_HSCROLL and WM_VSCROLL, provide only 16 bits of position data. However, the SCROLLINFO structure used by SBM_GETSCROLLINFO, SBM_SETSCROLLINFO, GetScrollInfo, and SetScrollInfo provides 32 bits of scroll-bar position data. You can use these messages and functions while processing either the WM_HSCROLL or WM_VSCROLL messages to obtain 32-bit scroll-bar position data.
GetScrollInfo, SBM_GETSCROLLINFO, SCROLLINFO, SetScrollInfo
See also:
| file: /Techref/os/win/api/win32/mess/src/msg16.htm, 3KB, , updated: 2000/4/7 12:20, local time: 2012/5/25 11:46,
38.107.179.230:LOG IN |
| ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/techref/os/win/api/win32/mess/src/msg16.htm"> SBM_SETSCROLLINFO</A> |
| Did you find what you needed? |
Robotics nuts!Check out http://users.frii.com/dlc/robotics/projects/botproj.htm from Dennis Clark. This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.