Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • So I need to Dim as new variable as ListView.SelectedListViewItemCollection, and then access the values of the ListView from that? Commented Apr 15, 2010 at 12:25
  • Since your ListViewItem is actually a string array, when you call ManageList.SelectedItems(0), it returns a string array (or whatever it is you put in that position). Now that you have that array, you can access the values within it. See my edit above for an example of accessing the forth array element of the selected ListViewItem. Commented Apr 15, 2010 at 12:34