[SOLVED] Hi All
Many thanks in Advance!
I have a very 2 dimensional array and have explored the forum and done as others have stated but the compiler is throwing an error?
Type ALevel
iNum as Integer //Which Level Number is this?
iObjCount as Integer //How many Objects in this level?
iObj as ALevelObj[14,20] //Array of Objects for our level
EndType
Type ALevelslFile
sLName as String //Levels Set Name
iLTotalObjs as Integer //Total Number of Objects in ALL Levels
tLevel as ALevel[100] //100 Levels Max
EndType
Global MGLev as ALevelslFile
MGLev.tLevel[0].iObj[0].length = 7
MGLev.tLevel[0].iObj[0,0].length = 7
SOLUTION:
MGLev.tLevel[0].iObj.length = 7
MGLev.tLevel[0].iObj[0].length = 7
Any ideas where I am going wrong??
Much Love!
I control all the juicy in here!