vote up 2 vote down star

Hi, i'm trying to loop thru items of a checkbox list. if it's checked, I want to set 1 value. If not, I want to set another value. I was using the below but it only gives me checked items:

foreach (DataRowView myRow in clbIncludes.CheckedItems)
{
    MarkVehicle(myRow);
}

TIA!

flag

80% accept rate
1  
asp316: WebForms or WinForms? (The APIs surrounding their respective CheckBoxList controls are quite different.) – John Rudy Dec 28 '08 at 3:24

3 Answers

vote up 1 vote down check
for (int i = 0; i < clbIncludes.Items.Count; i++)
  if (clbIncludes.GetItemChecked(i))
    // Do selected stuff
  else
    // Do unselected stuff

If the the check is in indeterminate state, this will still return true. You may want to replace

if (clbIncludes.GetItemChecked(i))

with

if (clbIncludes.GetItemCheckState(i) == CheckState.Checked)

if you want to only include actually checked items.

link|flag
Using this worked great. How can I get the value/value member of the checked checkbox? – asp316 Jan 4 at 5:17
vote up 0 vote down

Use the CheckBoxList's GetItemChecked or GetItemCheckState method to find out whether an item is checked or not by its index.

link|flag
vote up 3 vote down

Try something like this:

foreach (ListItem listItem in clbIncludes.Items)
{
    if listItem.Selected { //do some work }
    else { //do something else }
}
link|flag
It's winform. So, when i try to reference listitem, it's wanting to reference a the web control. i tried using a listviewitem and get the error 'Unable to cast object of type 'System.Data.DataRowView' to type 'System.Windows.Forms.ListViewItem'. Thoughts – asp316 Dec 27 '08 at 23:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.