Einzelnen Beitrag anzeigen

Hawkeye219

Registriert seit: 18. Feb 2006
Ort: Stolberg
2.227 Beiträge
 
Delphi 2010 Professional
 
#6

Re: Keypress Problem bei Setfocus

  Alt 12. Feb 2009, 19:25
Hallo Thomas,

ich sehe deine Ergänzung leider erst jetzt. Natürlich kannst du auch Kombinationen mit den Umschalttasten abfragen:

Delphi-Quellcode:
procedure TForm1.FormShortCut(var Msg: TWMKey; var Handled: Boolean);
var
  Key : TShortCut;
begin
  Key := {Menus.}ShortCut(Msg.CharCode, KeyDataToShiftState(Msg.KeyData));

  if (Key = scShift or VK_RIGHT) then
    begin
      ShowMessage ('Gotcha!');
      Handled := True;
    end;
end;
Gruß Hawkeye
  Mit Zitat antworten Zitat