Hier ein Schnippsel, der bestimmt weiterhilft.
Delphi-Quellcode:
procedure TMyForm.ApplicationShortcut(var Msg: TWMKey; var Handled: Boolean);
begin
// wenn ALT + STRG + H gedrückt ist ...
if (msg.CharCode=ord('H')) or (msg.charcode=ord('h')) then
if (GetKeyState(VK_CONTROL) < 0) and (GetKeyState(VK_MENU) < 0) then begin
MyHideFunction;
end;
end;
Mfg.