怎么样这程序循环!?
本帖最后由 rojie3698 于 2009-8-24 13:20 编辑#NoTrayIcon
WinWaitActive("土豆网","http://www.tudou.com")
WinClose("土豆网","http://www.tudou.com")
Sleep(1000)
Run(@ComSpec & ' /c start http://www.baidu.com,"", @SW_HIDE)
想让程序一直在运行住,怎么搞,用什么语句? 现在有效次数 只有一次。哪位兄弟懂的指点一下小弟
谢谢了。 :face (34): 典型的拿来主义.
提示一下.看一下 While ...WEnd语句的用法. 套在里面就能实现你所要的功能. 本帖最后由 tnt844 于 2009-8-23 13:42 编辑
楼主用AdlibEnable命令如何?可以在帮助文档里找它的格式。比如你参考这个小代码看看自己改成吗。每隔300MS运行一次KillProcess函数。AdlibEnable("KillProcess","300")
Func KillProcess()
If ProcessExists("360se.exe") Then
ProcessClose("360se.exe")
EndIf
If ProcessExists("iexplore.exe") Then
ProcessClose("iexplore.exe")
EndIf
If ProcessExists("theworld.exe") Then
ProcessClose("theworld.exe")
EndIf
EndFunc;--------猎杀进程--------
页:
[1]