Gets information about the specified combo box.
Syntax
lResult = SendMessage( // returns LRESULT in lResult (HWND) hWndControl, // handle to destination control (UINT) CB_GETCOMBOBOXINFO, // message ID (WPARAM) wParam, // = 0; not used, must be zero (LPARAM) lParam // = (LPARAM) (COMBOBOXINFO*) pcbi; );
Parameters
wParam This parameter is not used. pcbi [out] A pointer to a COMBOBOXINFO structure that receives the information.
Return Value
If the function succeeds, the return value is nonzero.If the function fails, the return value is zero. To get extended error information, call GetLastError.
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
This message is equivalent to GetComboBoxInfo.
Message Information
HeaderDeclared in Winuser.h, include Windows.hMinimum operating systems Windows XP
See Also
COMBOBOXINFO, GetComboBoxInfo