Delphi
Application Events Shortcut
Revers Tuna
2015. 4. 30. 18:57
if GetKeyState(VK_CONTROL) < 0 then // CTRL+
begin
case Msg.CharCode of
Ord('E') : //do something when CTRL + E;
VK_ESCAPE : //do something when CTRL + ESC;
VK_F12 : //do something when CTRL + F1
end;
end;