i have a listview with 3 columns and 10 records in it...
i'm new to C# so....
how do i go about getting the Value of the first row and first column???
Thank,
Derek
//First Column
this.listView1.Items[0].Text;
//Second Column, First Row
// SubItems may be zero based but I can't remember
// at the moment
this.listView1.Items[0].SubItems[1].Text;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.