Einzelnen Beitrag anzeigen

Benutzerbild von ibp
ibp

Registriert seit: 31. Mär 2004
Ort: Frankfurt am Main
1.511 Beiträge
 
Delphi 7 Architect
 
#6

Re: Stringgrid & Arrays

  Alt 8. Mär 2006, 22:04
Delphi-Quellcode:
c := 0;

for acol:=0 to 9 do
begin
  for arow:= 0 to 9 do
  begin
    stringgrid2.Cells[acol,arow] := inttostr(word1[c]);
    inc(c);
  end;
end;
  Mit Zitat antworten Zitat