can you clear an individual column on a listview and / or a subitem column ?
Printable View
can you clear an individual column on a listview and / or a subitem column ?
Something like this
VB Code:
Dim lngIndex As Long For lngIndex = 1 To ListView1.ListItems.Count ListView1.ListItems(lngIndex).SubItems(2) = "" Next
Not the same effect as saying listview1.listitems.clear still has a "" entry, anyway to nullify the column?
Isn't an empty string good enough?
My code uses "" rather than " " (with a space) so there be nothing there but if you are concerned then use vbNullChar rather than "".