Login
`
Templates, Tools and Utilities
|
||
Icetips Article
Back to article list
Search Articles
Add Comment
Printer friendly
Direct link
Windows API: Extracting hight and low order values 2002-03-06 -- Larry Sand Newsgroups: comp.lang.clarion,softvelocity.products.c55ee
Robert,
If you have this prototype:
ScWndProc PROCEDURE(UNSIGNED hWnd, |
UNSIGNED uMsg, |
UNSIGNED wParam, |
LONG lParam)!,LONG,PASCAL
As Edward notes, the word order of an Intel 32 bit integer is reversed,
so define this structure over the wParam to get the low order word
containing the scroll bar value.
wP GROUP,OVER(wParam)
low USHORT
high USHORT
END
Then you can do some thing like:
CASE wP.low
OF SB_LEFT
!handle the upper left scroll
....
END
Cheers,
Larry Sand
"Robert Rodgers"
Today is November 21, 2024, 3:58 am This article has been viewed 35202 times. Google search has resulted in 35 hits on this article since January 25, 2004.
|
|