玉 玉宇红星 Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-07 #1 请问大是虾们,我在用delphi编程时,想在某一窗口中输入alt+asd便又弹出另一窗口,请问这 个事件该是那个,代码如何写(能否举个例子)假如是shift或ctrl键又该怎么写.
Y YB_unique Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-13 #2 这就是一个创建热键的问题! For Example: 侦测 Ctrl + A 组合键 if ((lParam and _KeyPressMask) = 0) and (GetKeyState(vk_Control) < 0) and (wParam = Ord('A')) then begin WinExec('Notepad.exe', sw_Normal); // 调用记事本 end;
这就是一个创建热键的问题! For Example: 侦测 Ctrl + A 组合键 if ((lParam and _KeyPressMask) = 0) and (GetKeyState(vk_Control) < 0) and (wParam = Ord('A')) then begin WinExec('Notepad.exe', sw_Normal); // 调用记事本 end;