|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
CB_SETCURSEL
An application sends a CB_SETCURSEL message to select a string in the list of
a combo box. If necessary, the list scrolls the string into view. The text in
the edit control of the combo box changes to reflect the new selection, and any
previous selection in the list is removed.
CB_SETCURSEL
wParam = (WPARAM) index; // item index
lParam = 0; // not used; must be zero
Parameters
index
Value of wParam. Specifies the zero-based index of the string to select. If the index parameter is 1, any current selection in the list is removed and the edit control is
cleared.
Return Values
If the message is successful, the return value is the index of the item
selected. If index is greater than the number of items in the list or if index is set to 1, the return value is CB_ERR and the selection is cleared.
See Also
CB_FINDSTRING, CB_GETCURSEL, CB_SELECTSTRING
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|