I've built a dictionary that contains an array for the item, that array contains a 2-dimentional array within it. How can I read the items from the 2-dimentional array?
here is code that loads dictionary, yArray is 2-Dimentional:
Dim x As Integer
With aList
For x = 1 To 14
idxStr = "Key" & x
.Add idxStr, Array(x, yArray)
Next x
End With
This code attempt to view the dictionary items. It works to retrieve the 1st value of the item array, which is x, but errors on the next loop. I don't know how to loop through the yArray and print those values.
Dim ndx As Long
For Each aObj In aList.Items
For ndx = LBound(aObj) To UBound(aObj)
Debug.Print aObj(ndx)
Next ndx
Next aObj
Bookmarks