remaining = WinXComboBox_RemoveItem (hCombo, index)
Removes an item from a combo box.
Parameter | Description |
---|---|
hCombo | The handle to the combo box to remove the item from |
index | The index of the item to remove |
The number of items remaining in the list or $$CB_ERR on error.
'remove the first item in the list WinXComboBox_RemoveItem (hCombo, 0) |