Processing the WM_COMMAND Message in a Simple Dialog Box
When an event occurs in a dialog box control, the control sends a
WM_COMMAND message to the dialog box procedure. The high-order word of the
wParam parameter is a notification code, indicating the type of event that occurred.
The low-order word of
wParam is a constant identifying the control. The
lParam parameter is the window handle for the control.
When processing the WM_COMMAND message, the spelling checker example examines
the control identifier in the low-order word of
wParam to determine the origin of the message. The constants IDCOMBO, IDOK,
IDIGNORE, and IDCANCEL identify the combo box, the Change button, the Ignore button,
and the Cancel button controls, respectively.
A combo box may send a WM_COMMAND message for a number of different reasons.
To determine the type of event, the dialog box procedure examines the
notification code in the high-order word of
wParam. The example processes only the
CBN_DBLCLK notification message, which is sent when the user double-clicks a list item.
The dialog box procedure processes this notification message in the same way as
a Change button click.
The buttons in this example send
WM_COMMAND messages only when they are chosen by the user. When the user chooses the
Change button, the dialog box procedure replaces the current selection in the
application's edit control with the content of the selection field in the combo
box. The selection field may contain either the selected list item or text the
user has typed. The dialog box procedure then selects the next misspelled word in
the same way it processes an Ignore button click.
When the user chooses the Ignore button, the dialog box procedure calls the
application-defined SelectNextWord and InitSpellList functions to select the next
misspelled word in the application's edit control. InitSpellList places the
misspelled word in the selection field of the combo box and adds suggested
spellings to the combo box list.
When the user chooses the Cancel button, the dialog box procedure calls the
EndDialog function to close the dialog box.
- Software for developers
-
Delphi Components
.Net Components
Software for Android Developers
- More information resources
-
MegaDetailed.Net
Unix Manual Pages
Delphi Examples
- Databases for Amazon shops developers
-
Amazon Categories Database
Browse Nodes Database