R raysefo Well-known member Joined Jul 21, 2010 Messages 207 Programming Experience Beginner Sep 1, 2010 #1 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
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
R raysefo Well-known member Joined Jul 21, 2010 Messages 207 Programming Experience Beginner Sep 1, 2010 #2 I found thanks anyways For i = 0 To CheckBoxList1.Items.Count - 1 If CheckBoxList1.Items(i).Selected Then ... Upvote 0 Downvote
I found thanks anyways For i = 0 To CheckBoxList1.Items.Count - 1 If CheckBoxList1.Items(i).Selected Then ...