Thema: Delphi stringgrid columns

Einzelnen Beitrag anzeigen

Benutzerbild von sakura
sakura

Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
 
Delphi 12 Athens
 
#2

Re: stringgrid columns

  Alt 2. Jul 2004, 11:36
Weiß meinst Du mit benennen? Erstelle mal ein leeres Projekt, wirf ein StringGrid rein und diesen Code ins OnCreate Ereignis Deines Forms. Das sollte helfen

Delphi-Quellcode:
procedure TForm1.FormCreate(Sender: TObject);
var
  _Col, _Row: Integer;
begin
  with StringGrid1 do
  begin
    RowCount := 9;
    ColCount := 9;
    FixedCols := 2;
    FixedRows := 1;
    for _Col := 0 to Pred(ColCount) do
    for _Row := 0 to Pred(RowCount) do
      Cells[_Col, _Row] := Format('[%d, %d]', [_Col, _Row]);
  end;
end;
......
Daniel Lizbeth
Ich bin nicht zurück, ich tue nur so
  Mit Zitat antworten Zitat