In VB 6 I could assign a .Tag value not only to the ListItem, but also to
each of its subitems. I can't seem to find a way to do this in VB.NET
ListView Control/ListViewItem.

Is this possible? Any Examples?

Thanks

RE: ListView SubItems by jchREMOVE

jchREMOVE
Thu May 13 03:11:02 CDT 2004

Hey Cordon

ListViewItem does have a Tag property but you are right that ListViewSubItem does not have a Tag property. However, you can create a class that inherits the class ListViewSubItem and provide your own Tag property

Regards, Jakob.