Einzelnen Beitrag anzeigen

s-off
(Gast)

n/a Beiträge
 
#2

Re: im stringgrid eingabe mit pfeiltaste bestätigen

  Alt 12. Mai 2006, 08:02
Hallo,

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.
  Mit Zitat antworten Zitat