OK, I have a strange problem with a ListView control.
The control has the property .View = Details, with 7 columns.
I want to determine whether or not a SubItem of an Item in a ListView exist or not with the following code:
If the SubItem really exists in the ListView, item.SubItems.Contains(subItem) should return True, right?
But it doesn't... why not?
Thx in advance
The control has the property .View = Details, with 7 columns.
I want to determine whether or not a SubItem of an Item in a ListView exist or not with the following code:
VB.NET:
Dim item As New ListViewItem
item.Text = strBlablabla
Dim subItem As New ListViewItem.ListViewSubItem(item, "blablablaSubItem")
But it doesn't... why not?
Thx in advance
