Вниз
Скачать: CL | DM;

RegisterHotKey (KOL)   Найти похожие ветки 

 
feens   (2005-07-28 00:03) [0]

Пробовал все варианты что нашел здесь и в FAQ но все равно программа не работает как надо - нечего не делает когда нажимаю "Q".

function appmsg(var Dummy_Self: PObj; var Msg: tagMSG;var Rslt:Integer):boolean;
begin
 result:=false;
 if (msg.message=WM_HOTKEY) and (msg.wParam=ord("q")) then begin
   h:=findwindow(nil,"windov");
   if h<>0 then sendmessage(h,WM_CLOSE,0,0);
   result:=true;
 end;
end;

begin
...
RegisterHotkey(applet.Handle, ord("q"), 0, ord("q") );
Applet.OnMessage := TOnMessage(MakeMethod( nil, @appmsg));
...
end.

Что здесь неправильно?

Программа только сидит в tray и ждет hotkey, потому handle у всех обьектах (TrayIcon, PopupMenu) есть applet. MCK не использую.


 
Thaddy   (2005-07-28 01:01) [1]

Hotkeys need to be combined with either alt or crtl, unless you install a true keyboardhook or do something similar as I did with my pianokeyboard control, i.e. intercept everything and translate it into another keycode.


 
Dodfr   (2005-07-28 02:01) [2]

also with shift :-) and you can even mix them alll to make some complicated CTRL+SHIFT+ALT+A

Also your registerhotkey parameters is bad !

unique_id:=GlobalAddATOM("MyHotKey"); // idea to get some unique id

RegisterHotKey(form.Handle, unique_id, MOD_CONTROL + MOD_ALT + MOD_SHIFT, VK_A);

You can pass handle of form instead of applet.


 
Thaddy   (2005-07-28 12:18) [3]

2dodfr: but only shift+ q won&#39;t work! that is simply uppercase. Alt or ctrl (or windows key) are necessary for the proper working of a hot key.



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: -0.975 c
3-1137997431
madin
2006-01-23 09:23
2006.03.19
Регистрация Local Server в InterBase


2-1141279313
Sany81
2006-03-02 09:01
2006.03.19
Delphi: ActiveX Form+TThread=Проблема


2-1141182571
BETEPEHAP
2006-03-01 06:09
2006.03.19
Стиль XP


15-1140679489
PARUS
2006-02-23 10:24
2006.03.19
Пиксельная тема...


2-1141244458
markers
2006-03-01 23:20
2006.03.19
ListView




   Наверх