Current Selection
The
current selection is a list item the user has selected; the selected text appears in the
selection field of the combo box. However, in the case of a simple combo box or a
drop down combo box, the current selection is only one form of possible user input
in a combo box. The user can also type text in the selection field.
The current selection is identified by the zero-based index of the selected
list item. An application can set and retrieve it at any time. The parent window
or dialog box procedure receives notifications when user changes the current
selection for a combo box. The parent window or dialog box is not notified when
the application changes the selection.
When a combo box is created, there is no current selection. This is also true
for a simple or drop-down combo box, if the user has edited the contents of the
selection field. To set the current selection, an application sends the
CB_SETCURSEL message to the combo box. An application can also use the
CB_SELECTSTRING message to set the current selection to a list item whose string begins with
a specified string. To determine the current selection, an application sends
the
CB_GETCURSEL message to the combo box. If there is no current selection, this message
returns CB_ERR.
When the user changes the current selection in a combo box, the parent window
or dialog-box procedure receives a
WM_COMMAND message with the notification message
CBN_SELCHANGE in the high-order word of the
wParam parameter. As a result, the application can respond to this notification
message and execute a specific process each time the user selects a list item. This
notification message is not sent when the current selection is set using the
CB_SETCURSEL message.
In a drop-down combo box or drop-down list box, an application wait for the
use to close the list box before processing a change in the current selection.
This can be useful when significant processing is required. For example, to
update a directory list based on the selected drive, an application can process the
CBN_CLOSEUP message instead of CBN_SELCHANGE to update a directory list after the user
selects a drive.
An application could also process the notification messages
CBN_SELENDOK and
CBN_SELENDCANCEL. The system sends CBN_SELENDOK when the user selects a list item, or selects
an item and then closes the list. This indicates the user has finished, and the
selection should be processed. CBN_SELENDCANCEL is sent when the user selects
an item, but then selects another control, presses the ESCAPE key while the drop-down list is open, or closes the dialog box. This
indicates the user's selection should be ignored. In a simple combo box, CBN_SELENDOK
is sent before every CBN_SELCHANGE message. If the WS_EX_NOPARENTNOTIFY window
style is specified for the combo box, the system does not send CBN_SELENDOK and
CBN_SELENDCANCEL messages.
In a simple combo box, the system sends the
CBN_DBLCLK notification message when the user double-clicks a list item. In a drop-down
combo box or drop-down list, a single click hides the list so it is not
possible to double-click an item.
- 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