Delphi 检测用户超过多长时间没有操作键盘或鼠标


procedure TForm1.Timer1Timer(Sender: TObject);
var  vLastInputInfo: TLastInputInfo;
begin
vLastInputInfo.cbSize := SizeOf(vLastInputInfo);
GetLastInputInfo(vLastInputInfo);
if GetTickCount - vLastInputInfo.dwTime > 5000 then
begin
timer1.Enabled:= false;
showmessage(‘超过5秒,用户未动鼠标!‘);
end;
end;

Delphi 检测用户超过多长时间没有操作键盘或鼠标

上一篇:Win7 64位系统U盘安装Centos6.5双系统


下一篇:pscp使用详解 Win与Linux文件互传工具