I want to create a simple collection such as:
Code:
Dim colNew as New Collection
colNew.Add "Text", "Key"
I want to change the key value in the collection like
you can for the ListView control.
Code:
ListView.ListItems(1).Key = "Key"
ListView.ListItems("Key") = "Text"
It seems that once you put the key into the collection,
there is no way to modify it. Does anyone know of a way?