delphi 定时关闭其他应用程序
我想请教几个问题。我用delphi做了一个链接 procedure TForm1.Button1Click(Sender: TObject);
var
nResult : Integer ;
begin
nResult := WinExec ( 'C:\Program Files\360\360se3\360SE.exe' , 0 ) ;
if nResult > 31 then
ShowMessage ( '浏览器成功运行!' )
我想让浏览器在 空闲 1分钟后强制关闭,应当加入什么代码?
谢谢