◄Up► ◄Contents► ◄Index► ◄Back► ──Microsoft Foundation Classes────────────────────────────────────────────── typedef struct tagDELETEITEMSTRUCT { WORD CtlType WORD CtlID; WORD itemID; HWND hwndItem; DWORD itemData; } DELETEITEMSTRUCT; Member Description CtlType Contains ODT_LISTBOX (which specifies an owner-draw list box) or ODT_COMBOBOX (which specifies an owner-draw combo box). CtlID Contains the control ID for the list box or combo box. itemID Contains the index of the item in the list box or combo box being removed. hwndItem Contains the window handle of the control. itemData Contains the value passed to the control by ◄CComboBox::AddString►, ◄CComboBox::InsertString►, ◄CListBox::AddString► or ◄CListBox::InsertString►. -♦-