Hello, I have a slight problem. I'm trying to remove all the checked items in my CheckedListBox.
I started by doing CheckedListBox1.Items.Remove(CheckedListbox1.CheckedItems). That seemed like it would work, but it didn't. I soon discovered that CheckedListBox1.Items.Remove only works on the the strings of the individual items.

Is there a way to accomplish what I am trying to do?

Thanks for the help.