Thema
:
Delphi
dynamisches Stringgrid
Einzelnen Beitrag anzeigen
Jens Schumann
Registriert seit: 27. Apr 2003
Ort: Bad Honnef
1.644 Beiträge
Delphi 2009 Professional
#
5
27. Jun 2003, 13:19
Hallo Hansa,
probier's mal hiermit
zusammenfalten
·
markieren
Delphi-Quellcode:
type
TForm1 =
class
(TForm)
StringGrid1: TStringGrid;
procedure
StringGrid1SelectCell(Sender: TObject; ACol, ARow: Integer;
var
CanSelect: Boolean);
procedure
StringGrid1KeyUp(Sender: TObject;
var
Key: Word;
Shift: TShiftState);
private
{ Private-Deklarationen }
FLastCol : Integer;
FLastRow : Integer;
public
{ Public-Deklarationen }
end
;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure
TForm1.StringGrid1SelectCell(Sender: TObject; ACol,
ARow: Integer;
var
CanSelect: Boolean);
begin
FLastCol:=ACol;
FLastRow:=ARow;
end
;
procedure
TForm1.StringGrid1KeyUp(Sender: TObject;
var
Key: Word;
Shift: TShiftState);
begin
If
(Key=VK_DOWN)
and
(FLastRow=StringGrid1.RowCount-1)
and
(FLastCol=StringGrid1.ColCount-1)
then
begin
StringGrid1.RowCount:=StringGrid1.RowCount+1;
StringGrid1.Row:=StringGrid1.RowCount-1;
end
;
end
;
end
.
Zitat
Jens Schumann
Öffentliches Profil ansehen
Mehr Beiträge von Jens Schumann finden