Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
'''<summary>Retrieves the window menu as a result of a mouse click.</summary>
SC_MOUSEMENU = &HF090
'''<summary>
'''Retrieves the window menu as a result of a keystroke.
'''For more information, see the Remarks section.
'''</summary>
'''<summary>Retrieves the window menu as a result of a keystroke. For more information, see the Remarks section.</summary>
SC_KEYMENU = &HF100
'''<summary>TODO</summary>
SC_ARRANGE = &HF110
'''<summary>Restores the window to its normal position and size.</summary>
SC_RESTORE = &HF120
'''<summary>Activates the Start menu.</summary>
SC_TASKLIST = &HF130
'''<summary>Executes the screen saver application specified in the [boot] section of the System.ini file.</summary>
SC_SCREENSAVE = &HF140
'''<summary>
'''Activates the window associated with the application-specified hot key.
'''The lParam parameter identifies the window to activate.
'''</summary>
SC_HOTKEY = &HF150
'#if(WINVER >= &h0400) 'Win95
'''<summary>Selects the default item; the user double-clicked the window menu.</summary>
SC_DEFAULT = &HF160
'''<summary>
'''Sets the state of the display. This command supports devices that
'''have power-saving features, such as a battery-powered personal computer.
'''The lParam parameter can have the following values: -1 = the display is powering on,
'''1 = the display is going to low power, 2 = the display is being shut off
'''</summary>
SC_MONITORPOWER = &HF170
SC_HOTKEY = &HF150
'''<summary>
'''Changes the cursor to a question mark with a pointer. If the user
'''then clicks a control in the dialog box, the control receives a WM_HELP message.
'''</summary>
SC_CONTEXTHELP = &HF180
'#if(WINVER >= &h0400) 'Win95
'''<summary>TODO</summary>
SC_SEPARATOR = &HF00F
'#endif 'WINVER >= &h0400
'''<summary>Selects the default item; the user double-clicked the window menu.</summary>
SC_DEFAULT = &HF160
'#if(WINVER >= &h0600) 'Vista
'''<summary>
'''Sets the state of the display. This command supports devices that
'''have power-saving features, such as a battery-powered personal computer.
'''The lParam parameter can have the following values: -1 = the display is powering on,
'''1 = the display is going to low power, 2 = the display is being shut off
'''</summary>
SC_MONITORPOWER = &HF170
'''<summary>Indicates whether the screen saver is secure.</summary>
SCF_ISSECURE = &H1
'''<summary>
'''Changes the cursor to a question mark with a pointer. If the user
'''then clicks a control in the dialog box, the control receives a WM_HELP message.
'''</summary>
SC_CONTEXTHELP = &HF180
In WM_SYSCOMMAND messages, the four low-order bits of the wParam parameter are used internally by the system. To obtain the correct result when testing the value of wParam, an application must combine the value 0xFFF0 with the wParam value by using the bitwise AND operator.
In WM_SYSCOMMAND messages, the four low-order bits of the wParam parameter are used internally by the system. To obtain the correct result when testing the value of wParam, an application must combine the value 0xFFF0 with the wParam value by using the bitwise AND operator.
The mysterious SCF_ISSECURE value does not appear in any official documentation.
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!