首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > vbScript >

vbs中on error resume next用法解决思路

2012-02-09 
vbs中on error resume next用法一直不明白on error resume next用法,如下面的代码,显示刷新页面5次,sub中

vbs中on error resume next用法
一直不明白on error resume next用法,如下面的代码,显示刷新页面5次,sub中有错误的,但是为什么错误的具体信息就是输不出来,刚开始学,请多指教,不胜感激:

On Error Resume Next
If Err.Number<>0 Then
MsgBox Err.Number&vbcr&Err.Description&vbcr&Err.Source
End If 
Sub PageRefresh()
Set objExplorer = CreateObject("InternetExplorer.Application")
With objExplorer
.Navigate "http://www.a-bm.cn/Exhi_news/T164/list.html"  
.......
End With
Dim i
i=0
Do
  wait 10 //这句代码有误
  'Wscript.Sleep 10000
  '延时10s
  i=i+1
  objExplorer.Refresh
  MsgBox i
Loop While i<5
objExplorer.Quit
End Sub
PageRefresh()

[解决办法]

VBScript code
on error resume next'就是不理是否发生错误,还要往下运行。'这句话一般放在有可能发生错误的地方。一最后发生的一个错误为准。If Err.Number <>0 Then    MsgBox Err.Number&vbcr&Err.Description&vbcr&Err.Source End If 

热点排行