Well, this is my coming out. I confess, I avoid to use types whenever I can, but lately I was trying to do something with Type Structs that should be accessible with a 3 dimensional Array as Identifiers.
I got an array, like
dim arr(10,10,10)
or maybe
dim arr.mytype(10,10,10) ; (as desribed in the docs)
and I want to use each one of the 11*11*11 indexes as a Type struct instance, so each one can hold a list of values (of individual length).
How would I have to do that? Thanks for your help!
I got an array, like
dim arr(10,10,10)
or maybe
dim arr.mytype(10,10,10) ; (as desribed in the docs)
and I want to use each one of the 11*11*11 indexes as a Type struct instance, so each one can hold a list of values (of individual length).
How would I have to do that? Thanks for your help!