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

vbs中使用InternetExplorer.Application出错解决方案

2012-03-09 
vbs中使用InternetExplorer.Application出错有以下代码,不知什么原因运行一阵后,会出现:脚本:...行:26字符

vbs中使用InternetExplorer.Application出错
有以下代码,不知什么原因运行一阵后,会出现:

脚本:...
行:26
字符:4
错误:请求的资源在使用中
代码:800700AA
源:(null)

的错误

为什么会出现这个错误啊,大家帮帮忙

VBScript code
'显式声明所有变量Option ExplicitDim oShell, oIE, address, fso, file, urlset oShell = WScript.CreateObject ("WScript.Shell")set fso = WScript.CreateObject ("Scripting.FileSystemObject")set oIE = Wscript.CreateObject ("InternetExplorer.Application" , "UMU_")'设置浏览器的属性oIE.Toolbar = TrueoIE.Visible = TrueoIE.Height = 800oIE.Width = 800oIE.Silent = Trueif fso.fileExists ("url.txt") then     '持续进行    while true        set file = fso.OpenTextFile ("url.txt", 1) '以只读方式打开        while not file.AtEndOfStream            '一行一行的读取url地址            url = file.ReadLine            oIE.Navigate url                        while oIE.busy                    WScript.Sleep 1000 '每隔1秒钟检查            wend        wend                file.Close    wendelse     WScript.echo "url.txt file does't exists !"end if'消息响应函数sub UMU_OnQuit ()    WScript.Quitend sub


url中的存储的是:
www.xunlei.com
www.sina.com



[解决办法]
http://www.baidu.com/s?wd=%C7%EB%C7%F3%B5%C4%D7%CA%D4%B4%D4%DA%CA%B9%D3%C3%D6%D0

To 2L:
没出错的时候,err.number是0,走else分支……

热点排行