I have a CheckedListBox with 95 Checked Items and 5 Unchecked Items.
Every Checked and Unchecked Item has a "string" name.
What I am trying to do is to locate All the Unchecked Items in this box and put these strings into my vector with the pushback method: Unchecked.push_back();
The thing is that I am not sure how I will find all the Unchecked Items.
I have found ->CheckedItems but nothing that relate to Unchecked Items.
Perheps something with Checked == false could be used in any way here ?
std::vector<string> Unchecked;
CheckedListBox1->CheckedItems;