I have a list view with 4 columns that i'm wanting to use as a selection tool. Is there a way to extract the value stored in one column when an item is selected? That value is needed to get to the next step. if this can be done it will greatly simplify the code. Thanks.
-----------
figuered it out
VB Code:
Dim list As New ListViewItem() For Each list In ListView1.SelectedItems selected = list.SubItems(3).Text Next


Reply With Quote