Kod: Tümünü seç
if (Key = VK_F7) and (Shift = [ssCtrl]) and (MenuServiceLib.Visible) then
MenuServiceLib.Click;
Kod: Tümünü seç
if (Key = VK_F7) then
ShowMessage('Tamam');
Kod: Tümünü seç
if (Key = VK_F7) and (Shift = [ssCtrl]) and (MenuServiceLib.Visible) then
MenuServiceLib.Click;
Kod: Tümünü seç
if (Key = VK_F7) then
ShowMessage('Tamam');
Kod: Tümünü seç
procedure TForm1.ApplicationEvents1Message(var Msg: tagMSG;
var Handled: Boolean);
begin
if Msg.message = WM_KEYDOWN then
if Msg.wParam = VK_F5 then
begin
ShowMessage('EF BEŞ');
Handled := true;
end;
end;