-1
I have this code.
You’re reading my checkboxes from top to bottom when they’re all checked. But what I needed was, when he started reading, I wanted him to start reading from 2.9.15 up. Not 2.9.16 down..
foreach (UltraListViewItem item in listView.Items)
{
if (item.CheckState == CheckState.Checked)
{
DataTable versionToUpdateDT = mUpdater.GetVersionToUpdate((int)item.Tag);
mVersionSelect = item.Text;
}
}
I don’t know if that’s possible.
Ana, you want to, for example, when marking the
CheckBox
2.9.15.1 all above it are marked?– Jéf Bueno