08-04-2008, 06:48 PM
wParam contains message code (eg LBN_SELCHANGE) in high order word and control id (eg 3) in low order word.
To match wParam, we place a message code in high order word (LBN_SELCHANGE<<16) and control id in low order word (|3).
To match wParam, we place a message code in high order word (LBN_SELCHANGE<<16) and control id in low order word (|3).