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;
...
...