Thema: Delphi Tstringgrid auffüllen

Einzelnen Beitrag anzeigen

marabu

Registriert seit: 6. Apr 2005
10.109 Beiträge
 
#2

Re: Tstringgrid auffüllen

  Alt 9. Mai 2006, 18:44
Zum Beispiel so:

Delphi-Quellcode:
procedure RandomFillGrid(sg: TStringGrid);
var
  iCol, iRow: Integer;
begin
  with sg do
    for iRow := FixedRows to Pred(RowCount) do
      for iCol := FixedCols to Pred(ColCount) do
        if Cells[iCol, iRow] = 'then
          Cells[iCol, iRow] := Chr(Ord('A') + Random(26));
end;
Grüße vom marabu
  Mit Zitat antworten Zitat