An application sends a CB_DELETESTRING message to delete a string in the list box of a combo box.
CB_DELETESTRING
wParam = (WPARAM) index; // item to delete
lParam = 0; // not used; must be zero
The return value is a count of the strings remaining in the list. If the index parameter specifies an index greater than the number of items in the list, the return value is CB_ERR.
If you create the combo box with an owner-drawn style but without the CBS_HASSTRINGS style, the system sends a WM_DELETEITEM message to the owner of the combo box so the application can free any additional data associated with the item.
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Requires version 1.0 or later.
Header: Declared in winuser.h.
Combo Boxes Overview, Combo Box Messages, CB_RESETCONTENT, WM_DELETEITEM