2 Dimensional array of type?

Previous topic - Next topic

FutureCow

I'm trying to do the following

Code (glbasic) Select
type testtype
   a
   b
end type

dim myarray[][] as testtype


But all the ways I've tried keep having a syntax error. Anyone know how I can create a 2 dimensional array of a type structure?

Kitty Hello

LOCAL myarray[] as test
DIM myarray[125][278]

FutureCow

Thanks for the quick reply Gernot!