I'm trying to do the following
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?
LOCAL myarray[] as test
DIM myarray[125][278]
Thanks for the quick reply Gernot!