Hi again!
I've created my own collection object and placed two keyed items in it. As I can iterate over the collection OK, how can I get a list of the keys? I want to say something like
That can't be impossible can it? Please tell me I don't have to keep track of the keys myself!Code:' in general decls: Dim myColl As New Collection ' in procedure: For i = 1 To myColl.Count MsgBox "Item " & CStr(i) & " has key " & myColl.Key(i) Next
TIA,
Toot




Reply With Quote