I have a checked list box with an unknown number of items some of which may have been checked. I need to know how to determine which of the items have been checked. For purposes of discussion, assume that my checked list box is called myCheckedListBox.
In theory, I need to scroll through the list as in
for (int x = 0; int < myCheckedListBox.Items.Count; x++)
{
// what goes here to check each index/item = x to see if it's been checked?
}
Thanks..