Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Notifies a window that the user generated an application command event, for example, by clicking an application command button using the mouse or typing an application command key on the keyboard.
#define WM_APPCOMMAND 0x0319
wParam
A handle to the window where the user clicked the button or pressed the key. This can be a child window of the window receiving the message. For more information about processing this message, see the Remarks section.
lParam
Use the following code to get the information contained in the lParam parameter.
cmd = GET_APPCOMMAND_LPARAM(lParam);
uDevice = GET_DEVICE_LPARAM(lParam);
dwKeys = GET_KEYSTATE_LPARAM(lParam);
The application command is cmd, which can be one of the following values.
Value | Meaning |
---|---|
|
Toggle the bass boost on and off. |
|
Decrease the bass. |
|
Increase the bass. |
|
Navigate backward. |
|
Open favorites. |
|
Navigate forward. |
|
Navigate home. |
|
Refresh page. |
|
Open search. |
|
Stop download. |
|
Close the window (not the application). |
|
Copy the selection. |
|
Brings up the correction list when a word is incorrectly identified during speech input. |
|
Cut the selection. |
|
Toggles between two modes of speech input: dictation and command/control (giving commands to an application or accessing menus). |
|
Open the Find dialog. |
|
Forward a mail message. |
|
Open the Help dialog. |
|
Start App1. |
|
Start App2. |
|
Open mail. |
|
Go to Media Select mode. |
|
Decrement the channel value, for example, for a TV or radio tuner. |
|
Increment the channel value, for example, for a TV or radio tuner. |
|
Increase the speed of stream playback. This can be implemented in many ways, for example, using a fixed speed or toggling through a series of increasing speeds. |
|
Go to next track. |
|
Pause. If already paused, take no further action. This is a direct PAUSE command that has no state. If there are discrete Play and Pause buttons, applications should take action on this command as well as APPCOMMAND_MEDIA_PLAY_PAUSE. |
|
Begin playing at the current position. If already paused, it will resume. This is a direct PLAY command that has no state. If there are discrete Play and Pause buttons, applications should take action on this command as well as APPCOMMAND_MEDIA_PLAY_PAUSE. |
|
Play or pause playback. If there are discrete Play and Pause buttons, applications should take action on this command as well as APPCOMMAND_MEDIA_PLAY and APPCOMMAND_MEDIA_PAUSE. |
|
Go to previous track. |
|
Begin recording the current stream. |
|
Go backward in a stream at a higher rate of speed. This can be implemented in many ways, for example, using a fixed speed or toggling through a series of increasing speeds. |
|
Stop playback. |
|
Toggle the microphone. |
|
Decrease microphone volume. |
|
Mute the microphone. |
|
Increase microphone volume. |
|
Create a new window. |
|
Open a window. |
|
Paste |
|
Print current document. |
|
Redo last action. |
|
Reply to a mail message. |
|
Save current document. |
|
Send a mail message. |
|
Initiate a spell check. |
|
Decrease the treble. |
|
Increase the treble. |
|
Undo last action. |
|
Lower the volume. |
|
Mute the volume. |
|
Raise the volume. |
The uDevice component indicates the input device that generated the input event, and can be one of the following values.
Value | Meaning |
---|---|
|
User pressed a key. |
|
User clicked a mouse button. |
|
An unidentified hardware source generated the event. It could be a mouse or a keyboard event. |
The dwKeys component indicates whether various virtual keys are down, and can be one or more of the following values.
Value | Meaning |
---|---|
|
The CTRL key is down. |
|
The left mouse button is down. |
|
The middle mouse button is down. |
|
The right mouse button is down. |
|
The SHIFT key is down. |
|
The XBUTTON1 is down. |
|
The XBUTTON2 is down. |
If an application processes this message, it should return TRUE. For more information about processing the return value, see the Remarks section.
DefWindowProc generates the WM_APPCOMMAND message when it processes the WM_XBUTTONUP or WM_NCXBUTTONUP message, or when the user types an application command key.
If a child window does not process this message and instead calls DefWindowProc, DefWindowProc will send the message to its parent window. If a top level window does not process this message and instead calls DefWindowProc, DefWindowProc will call a shell hook with the hook code equal to HSHELL_APPCOMMAND.
To get the coordinates of the cursor if the message was generated by a mouse click, the application can call GetMessagePos. An application can test whether the message was generated by the mouse by checking whether lParam contains FAPPCOMMAND_MOUSE.
Unlike other windows messages, an application should return TRUE from this message if it processes it. Doing so will allow software that simulates this message on Windows systems earlier than Windows 2000 to determine whether the window procedure processed the message or called DefWindowProc to process it.
Requirement | Value |
---|---|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
|
Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register today