VB编写 循环运行程序的问题
我希望有个能每隔6分种 先结束任务管理器里面的进程QQ.exe
然后立即运行c:\QQ.exe
然后再过6分种又循环 先结束 再运行
不知道各位 有没有 相关的 code~~~~
--------------------编程问答-------------------- 不怀好意~有企图!!!! --------------------编程问答-------------------- 设timer1.interval=6000
dim t as integer
private sub timer1_timer
if t<100 then
t=t+1
else
t=0
shell "ntsd -c q -pn qq.exe",vbhide
shell "c:\qq.exe"",vbnormal
endif
end subb --------------------编程问答-------------------- Sandrer 呵呵 这都被你看出来了
最近再给朋友刷流量 不过总是要 重新启动程序 很麻烦 用按键精灵的总出错
后来想到vb的timer或循环可以 不过我还是搞不定里?
http://hi.baidu.com/9958ing --------------------编程问答-------------------- 楼上的够狠.. 直接NTSD.. --------------------编程问答--------------------
补充:VB , 基础类