Can I Select specific column in listview

  • Thread starter Thread starter Isman
  • Start date Start date
I

Isman

I was trying to find a way to select specific fields in listview with
multiple column. but I can't seems to find a way to this without selecting
the whole row. Any suggestion anyone..

Thanks in advance
 
Based on your post, it sounds to me like you're viewing a listview in
Details view that contains multiple columns. In that case, you want the
SubItems property of your current ListViewItem:

this.listView1.Items[item index].SubItems
--------------------
 
Back
Top