I have a CheckBoxList which I\'m populating with data. When I attempt to retrieve the checked items from the list I can only grab the item ordinal, I cannot get the value.>
Try to use this :
private void button1_Click(object sender, EventArgs e) { for (int i = 0; i < chBoxListTables.Items.Count; i++) if (chBoxListTables.GetItemCheckState(i) == CheckState.Checked) { txtBx.text += chBoxListTables.Items[i].ToString() + " \n"; } }