vbs延时执行,执行第一段,在执行第二段
发布网友
发布时间:2023-10-10 17:43
我来回答
共3个回答
热心网友
时间:2024-12-02 03:55
For是循环语句,也就是说,从i的1到3都得进行循环,至next为一个循环节。
举个例子:
for i= 1 to 3
msgbox "hello"
next
这里,next的作用是将i加1,然后回到For.你想,是不是当i为3时,+1后就停止运行了?0 to 2也是一样的,0,1,2三个数字。
另外,还可以
for i= 1 to 5 step 2
next
这里意思就是1次2个数字的跳,就是1,3,5,每次就加2了。
热心网友
时间:2024-12-02 03:55
for i= 1 to 3
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 1000
WshShell.AppActivate "无标题 - 记事本"
WshShell.SendKeys "^v"
wscript.sleep 3000'延时三秒
next
热心网友
时间:2024-12-02 03:56
for x= 0 to 2
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 1000
WshShell.AppActivate "无标题 - 记事本"
WshShell.SendKeys "^v"
wscript.sleep 3000
next