Combo Boxes


Combo boxes consist of an edit control and a list box. The user clicks the arrow button to the right of the edit box to display the list box. Combo boxes are usefull when you need the user to select an item from a list, but don't want to waste space with a list box.

Combo box controls in WinX are implemented using the Win32 ComboBoxEx control, which allows you to give each item an image. If you don't want to do this, just leave the image related parameters 0.

Related Links

WinXAddComboBox
WinXComboBox_AddItem
WinXComboBox_RemoveItem
WinXComboBox_GetSelection
WinXComboBox_SetSelection
WinXComboBox_GetItem$
WinXComboBox_GetEditText$