tektipwfkm
Programmer
Dim dic As Object
Dim keyColl As Object
Set dic = CreateObject("Scripting.Dictionary")
dic.Add "a", "1"
dic.Add "b", "2"
dic.Add "c", "3"
keyColl = dic.Keys ' Prompt "Object method returned an unsupported data type"
How to get keys collection from dictionary?
Dim keyColl As Object
Set dic = CreateObject("Scripting.Dictionary")
dic.Add "a", "1"
dic.Add "b", "2"
dic.Add "c", "3"
keyColl = dic.Keys ' Prompt "Object method returned an unsupported data type"
How to get keys collection from dictionary?