ListView-Column Header to String Array

sathya.cs

Active member
Joined
May 24, 2009
Messages
31
Programming Experience
Beginner
How to copy elements of a single column of a list view to a string array?
 
First create an array of the appropriate size. You would then use a For loop to iterate over the Items in the ListView, getting the Text of the appropriate SubItem and copying it to the array each time.
 
Back
Top