I have a code
foreach(Control grpbox in this.Controls)
{
if (tb is CheckedListBox)
{
tb.CheckedItems...
}
}
and I need to use tb.CheckedItems as above...but somehow CheckedItems is not visible there...
I can see other things related to "Control" but not related to "checklistbox"
how to fix that?