CListBox::ResetContent
voidResetContent();
Remarks
Removes all items from a list box.
Example
// The pointer to my list box.
extern CListBox* pmyListBox;
// Delete all the items from the list box.
pmyListBox->ResetContent();
ASSERT(pmyListBox->GetCount() == 0);