<FONT face="Default Sans Serif,Verdana,Arial,Helvetica,sans-serif" size=2>Thanks all!<br>This one works!<br><br>Arjan<br><br><br>>He wants 2D dynamic arrays, let's give him one:<br>>type<br>>  TMyArray = array of array of Float;<br>>var<br>>  MyArray: TMyArray;<br>>begin<br>>  SetLength(MyArray,Width,Height); // Valid index now:<br>>[0..Width-1,0..Height-1]<br>>  // Do something with MyArray<br>>  // No deallocation needed, the compiler does this for you<br>>end;</FONT>