I have a CheckedListBox previously populated. I want to loop with a \"for each / next\" through all items in the CheckedListBox and do a lot of \"stuff\" with each iteration
For Each item In SuppliersCheckList.CheckedItems
If SuppliersCheckList.GetItemCheckState(SuppliersCheckList.Items.IndexOf(item)) Then
MsgBox(item.ToString)
End If
Next