Thema
:
Delphi
im stringgrid eingabe mit pfeiltaste bestätigen
Einzelnen Beitrag anzeigen
s-off
(Gast)
n/a Beiträge
#
2
Re: im stringgrid eingabe mit pfeiltaste bestätigen
12. Mai 2006, 09:02
Hallo,
markieren
Delphi-Quellcode:
procedure
TForm1.StringGrid1KeyDown(Sender: TObject;
var
Key: Word; Shift: TShiftState);
begin
if
Key = VK_RIGHT
then
begin
StringGrid1.Col := StringGrid1.Col + 1;
end
;
end
;
Die Frage ist, ob Du das wirklich möchtest.
Zitat