What should be the parameter for CreateObject?
See this example:
Dim a
Set a = CreateObject("Collection") 'getting a runtime error saying ActiveX
' component can't create object: 'Collection
a.add(CreateObject("Collection"))
a.Items(0).Add(1)
MsgBox(a.Items(0).count)
MsgBox(a.Items(0).Item(0))
how about a Dictionary