Public Type ColorArray
ColorTable() As Long
End Type
Dim MyColorArray() As ColorArray
Then in code
ReDim MyColorArray(1).ColorTable(256)
For this I get Index out of Range error
ColorTable() As Long
End Type
Dim MyColorArray() As ColorArray
Then in code
ReDim MyColorArray(1).ColorTable(256)
For this I get Index out of Range error