Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
voidResetContent();
Remarks
Removes all items from the list box and edit control of a combo box.
Example
// The pointer to my combo box.
extern CComboBox* pmyComboBox;
// Delete all the items from the combo box.
pmyComboBox->ResetContent();
ASSERT(pmyComboBox->GetCount() == 0);