|
|
The flag of the spinbox control message.
|
|
|
Disable the ability to scroll down.
SPM_DISABLEDOWN wParam = 0; lParam = 0;
|
|
|
Disable the ability to scroll up.
SPM_DISABLEUP wParam = 0; lParam = 0;
|
|
|
Enable the ability to scroll down.
SPM_ENABLEDOWN wParam = 0; lParam = 0;
|
|
|
Enable the ability to scroll up.
SPM_ENABLEUP wParam = 0; lParam = 0;
|
|
|
Gets the current position in the range of the spinbox.
SPM_GETCUR wParam = 0; lParam = 0;
|
|
|
Gets the parameter infos of the spinbox.
SPM_GETINFO PSPININFO info; wParam = 0; lParam = (LPARAM)info;
|
|
|
Gets the target window of the spinbox.
SPM_GETTARGET wParam = 0; lParam = 0;
|
|
|
Sets the current position in the range of the spinbox.
SPM_SETCUR int pos; wParam = (WPARAM)pos; lParam = 0;
|
|
|
Sets the parameter information of the spinbox.
SPM_SETINFO PSPININFO newinfo; wParam = 0; lParam = (LPARAM)newinfo;
|
|
|
Sets the target window of the spinbox. When the user click the up/left or down/right arrow of the spin box, it will emulate the down and up of the key SCANCODE_CURSORBLOCKUP or SCANCODE_CURSORBLOCKDOWN, and post MSG_KEYDOWN and MSG_KEYUP message to the target window. Note that the shifit key status of the message will have the flag KS_SPINPOST set.
SPM_SETTARGET HWND hTarget; wParam = 0; lParam = (LPARAM)hTarget;
|
1.4.2