You can specify which sub item it is by the name of the colum like so
vb.net Code:
ListView1.Items(3).SubItems("Name of colum")
So in that case it will return the value of the column specified of item 3.
If you are trying to get all the items in that colum you can do this
vb.net Code:
For Each item As ListViewItem In ListView1.Items item.SubItems("Name of colum").ToString() Next
EDIT: Let me double check this, I am more farmiliar with datagridview, but they seem very similar




Reply With Quote