Page 1 of 1

Declaring a very big array

PostPosted: August 9th, 2007, 11:41 pm
by Christine123
I have a 4 D array.
array of array of array of array of double;


when I declare my array the maximum space I can set it to is. 100
SetLength(FourParms, 100, 100, 100, 100);

How can I increase the size?

Thanks

PostPosted: August 10th, 2007, 6:06 am
by Johnny_Bit
have you ever tried pointer magic? it's simple and allows ou to achevie arrays as big as whole available memory.