Page 1 of 1

an array of pointers

Posted: Wed Jan 21, 2004 10:37 pm
by two_bits
Hi everyone, how would i have a multidimensial array of pointers to my custom data type? Ive searched the forums and cant anything.

Posted: Wed Jan 21, 2004 11:05 pm
by tinman

Code: Select all

Structure MyCustomDataType
    a.w
    b.l
EndStructure

Dim *foo.MyCustomDataType(25, 69)
Should do it.

Posted: Wed Jan 21, 2004 11:51 pm
by two_bits
Thanx a lot dude :)