本站首页    管理页面    写新日志    退出


«September 2025»
123456
78910111213
14151617181920
21222324252627
282930


公告
================

注会练习软件
http://www.cpasoft.com.cn
我的注会软件官网

http://blog.163.com/abc7105@126/

 

 


哈哈,热爱快“过气”的DELPHI


我的分类(专题)

日志更新

最新评论

留言板

链接

Blog信息
blog名称:注册会计师(注会)练习软件
日志总数:398
评论数量:116
留言数量:27
访问次数:3270646
建立时间:2005年6月6日




[delpih编程]窗体有焦点时热键生效,切换到其他程序时热键失效
软件技术

吕向阳 发表于 2009/5/25 17:42:33

核心思路就是加入一个ApplicationEvents控件,控件在addtion栏中,delphi的内置控件。在其active事件中注册热键,在deactive控件中取消注册就可以了,其他的照旧。procedure TForm1.ApplicationEvents1Deactivate(Sender: TObject);vari: Integer;begin//注销热键for i := Low(HotKeyId) to High(HotKeyId) dobeginUnRegisterHotKey(handle, HotKeyId[i]);GlobalDeleteAtom(HotKeyId[i]);end;end;procedure TForm1.ApplicationEvents1Activate(Sender: TObject);vari: integer;begin//for i := Low(HotKeyId) to High(HotKeyId) doHotKeyId[i] := GlobalAddAtom(PChar(IntToStr(i))); //热键命名可随意RegisterHotKey(Handle, HotKeyId[11], MOD_CONTROL, 65); //PageUpRegisterHotKey(Handle, HotKeyId[12], MOD_CONTROL, 66); //PageUpRegisterHotKey(Handle, HotKeyId[13], MOD_CONTROL, 67); //PageUpRegisterHotKey(Handle, HotKeyId[14], MOD_CONTROL, 68); //PageUpRegisterHotKey(Handle, HotKeyId[15], MOD_CONTROL, 69); //PageUpRegisterHotKey(Handle, HotKeyId[16], MOD_CONTROL, 49); //PageUpRegisterHotKey(Handle, HotKeyId[17], MOD_CONTROL, 50); //PageUpRegisterHotKey(Handle, HotKeyId[5], 0, VK_PRIOR); //PageUpRegisterHotKey(Handle, HotKeyId[6], 0, VK_NEXT);RegisterHotKey(Handle, HotKeyId[7], 0, VK_escape); //PageDownRegisterHotKey(Handle, HotKeyId[2], MOD_CONTROL, VK_RETURN); //Ctrl+Enterend;


阅读全文(933) | 回复(0) | 编辑 | 精华
 



发表评论:
昵称:
密码:
主页:
标题:
验证码:  (不区分大小写,请仔细填写,输错需重写评论内容!)



站点首页 | 联系我们 | 博客注册 | 博客登陆

Sponsored By W3CHINA
W3CHINA Blog 0.8 Processed in 0.035 second(s), page refreshed 144761589 times.
《全国人大常委会关于维护互联网安全的决定》  《计算机信息网络国际联网安全保护管理办法》
苏ICP备05006046号