View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tim Williams[_2_] Tim Williams[_2_] is offline
external usenet poster
 
Posts: 298
Default dictionary-(item, item, item); Can dictionary point to an array in VBA?

Dim oDict as new Scripting.Dictionary

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

Tim


"cate" wrote in message
...
Is it possible to have a dictionary object point to an simple array?

Can you do something like that in code?