how i can edit one listview's subitem ?? only one not all , thanks.
Printable View
how i can edit one listview's subitem ?? only one not all , thanks.
You first index the ListView's Items collection to get a ListViewItem object. You then index that item's SubItems collection to get a ListViewSubItem. You can then get and/or set the Text property of that subitem.
yeah I found how ,
Code :
ListView1.Items(0).SubItems(2).Text = Label10.Text