全局快捷键(20分)

  • 主题发起人 主题发起人 ldelphi
  • 开始时间 开始时间
L

ldelphi

Unregistered / Unconfirmed
GUEST, unregistred user!
这是我的程序中的一个全局快捷键,意思为:当用户按了 Ctrl+C 时,显示 hi ;我想改为当用户按了 Alt+C 时,

显示 hi .应该怎样改?
if (msg.LParamLo=MOD_Control) and (msg.LParamHi=67) then
begin
ShowMessage('hi');
end;
 
if (msg.LParamLo=MOD_Alt) and (msg.LParamHi=67) then
begin
ShowMessage('hi');
end;
 
多人接受答案了。
 

Similar threads

回复
0
查看
795
不得闲
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
379
import
I
后退
顶部