dictionary->(item, item, item); Can dictionary point to an array inVBA?

  • Thread starter Thread starter cate
  • Start date Start date
C

cate

Is it possible to have a dictionary object point to an simple array?

Can you do something like that in code?
 
Dim oDict as new Scripting.Dictionary

oDict.Add "key_value", Array("foo", "bar")

Tim
 
Back
Top