Oct 15, 2004 #1 J jacky2cool Newcomer Joined Oct 14, 2004 Messages 2 Can anyone help by telling me on how to retrieve a single item out from a listview, for example row 3 column 3 item.?
Can anyone help by telling me on how to retrieve a single item out from a listview, for example row 3 column 3 item.?
Oct 15, 2004 #2 I Iceplug Contributor Joined Aug 20, 2001 Messages 709 Location California, USA Dim S As String = Me.ListView1.Items(row).SubItems(col).Text The items represent each actual row or block of info. Each item has a collection of subitems.
Dim S As String = Me.ListView1.Items(row).SubItems(col).Text The items represent each actual row or block of info. Each item has a collection of subitems.