So sieht der Code übrigens aus wenn ich keine Schleife für a (
mein Problem) mit reinsetze:
Delphi-Quellcode:
a := 0;
c := 0;
for b := 0 to 9 do begin
c := c + 1;
stringgrid2.Cells[a,b] := inttostr (word1[c]);
end;
for b := 0 to 9 do begin
a := 1;
c := c + 1;
stringgrid2.Cells[a,b] := inttostr (word1[c]);
end;
for b := 0 to 9 do begin
a := 2;
c := c + 1;
stringgrid2.Cells[a,b] := inttostr (word1[c]);
end;
//usw. a immer weiter bis 9...