Anyways i figured it out thanks to posts from 2004 :-p
When declaring arrays this way the Rows are grouped together.
#include <Array.au3> Dim $MyArray[2][5] = [['Row[0] Col[0]', 'Row[0] Col[1]', 'Row[0] Col[2]', 'Row[0] Col[3]', 'Row[0] Col[4]'], _ ['Row[1] Col[0]', 'Row[1] Col[1]', 'Row[1] Col[2]', 'Row[1] Col[3]', 'Row[1] Col[4]']] _ArrayDisplay($MyArray)
Now my question is is there anyway of declaring an multiple dimentional array with the Cols grouped together?




