Registriert seit: 5. Jul 2006
Ort: Magdeburg
8.276 Beiträge
Delphi 10.4 Sydney
|
AW: Max Stringlen von Stringgrid.Cell
7. Feb 2019, 16:21
Hallo,
hm, also bei mir geht's.
Delphi-Quellcode:
type
TForm1 = class(TForm)
StringGrid1: TStringGrid;
procedure FormCreate(Sender: TObject);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
procedure TForm1.FormCreate(Sender: TObject);
var
sString: String;
iChar: Integer;
begin
sString:= '';
for iChar:= 1 to 600 do
begin
sString:= sString+'123456789';
end;
StringGrid1.Cells[0,0]:= sString;
StringGrid1.Colwidths[0]:= 1000;
end;
Heiko
Geändert von hoika ( 7. Feb 2019 um 16:28 Uhr)
|