Also ich habe jetzt folgendes Probiert:
Code:
if (TPMsg(lParam)^.message) = WM_KEYDOWN then begin
if TPMsg(lParam)^.wParam = VK_CONTROL then begin
CTRLPressed := True;
end;
end;
if (TPMsg(lParam)^.message) = WM_KEYUP then begin
if TPMsg(lParam)^.wParam = VK_CONTROL then begin
CTRLPressed := False;
end;
end;
if (TPMsg(lParam)^.message) = WM_KEYDOWN then begin
if TPMsg(lParam)^.wParam = VK_S and CTRLPressed then begin
Kill := True;
end;
end;
Sinn der Sache ist ein Test um STRG+S per Hook Abfangen zu können. Es geht aber nicht!
Kann mir keiner Tipps geben wie das mit Hooks + Tasenkombinationen zu machen ist!