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

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
That can't be impossible can it? Please tell me I don't have to keep track of the keys myself!

TIA,
Toot