有趣的问题(0分)

  • 主题发起人 主题发起人 slb_anders
  • 开始时间 开始时间
S

slb_anders

Unregistered / Unconfirmed
GUEST, unregistred user!
我作了一个程序,想在程序运行的时候, 死锁键盘和鼠标<br>出了截获消息之外,还又没有这方面的API函数呀。
 
function BlockInput (fBlockInput : boolean) : DWord; stdcall; external 'user32.DLL'; <br>procedure TForm1.Button1Click(Sender: TObject); <br>begin <br>&nbsp;BlockInput(true); <br>end; <br>procedure TForm1.Button2Click(Sender: TObject); <br>begin <br>&nbsp;BlockInput(false); <br>end; <br><br>
 
WHILE true do<br>begin<br>end;
 
to tianliangle2003<br>看了你的代码觉得很有趣,按button1把键盘、鼠标死锁了,怎么还可以按button2呢?呵呵~
 
不过,没有锁住Ctrl+Alt+Del,呵呵~~
 
后退
顶部