I was wanting to be able to iterate through each of my ListViews sub items and get the value from each. I have tried various things but am finding it really difficult to just get the sub item text from the second column, not the items text from the first column. Thanks.
foreach (ListViewItem itemRow in listView1.Items)
{
for (int i = 0; i < itemRow.SubItems.Count; i++)
{
string dueDate = itemRow.SubItems[i].Text;
MessageBox.Show(dueDate);
}
}
After a lot of trial and error I managed to do it with this code:
for (int i = 0; i < listView1.Items.Count; i++)
{
int ii = 1;
MessageBox.Show(listView1.Items[i].SubItems[ii].Text);
ii++;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With