SyntaxFix
Write A Post
Hire A Developer
Questions
This will do the trick for you:
foreach (int indexChecked in checkedListBox1.CheckedIndices) { string itemtxt = checkedListBox11.Items[indexChecked]; }
It will return whatever string value is in the checkedlistbox items.