Is there a way to get item from a ListView without actually selecting it
Hey
please can someone let me know that if there is a way to get an item from a column in ListView without actually selecting it.
Thanks
Ra
Re: Is there a way to get item from a ListView without actually selecting it
yes you can do this, if you know the row number, the column number or if you are searching a line according to the content of a reference cell:
Code:
listView1.Items[line].SubItems[column].Text
Re: Is there a way to get item from a ListView without actually selecting it