Question CheckBoxList how to determine which item is checked?

raysefo

Well-known member
Joined
Jul 21, 2010
Messages
207
Programming Experience
Beginner
Hi,

I have a CheckBoxList which has 10 items inside. I would like to know which of them are checked?

Any ideas?

Thanks in advance.


best regards
 
I found thanks anyways

For i = 0 To CheckBoxList1.Items.Count - 1
If CheckBoxList1.Items(i).Selected Then ...
 
Back
Top