Zitat von
nanix:
yea but how do i set value for each dimension in 3d array
like i do now multiarray[0,0,0]:='a';
but for each dimension seperatly becouse if i do know it only sets last dimension thus third the values.
Delphi-Quellcode:
for i:=0 to 9 do
for := 0 to 4 do
multiarray[i,j,0]:='a';
Grüße
Klaus