vbs调用非IE浏览器

来源:百度知道 编辑:UC知道 时间:2024/06/03 13:11:13
想通过VBS调用 遨游、火狐等浏览器而非IE,来打开某个网址。

代码该如何写呢?

谢谢!!!!!!
createobject("wscript.shell").run "cmd.exe /c start 网址"

这样还是调用IE
我是想调用其他的浏览器来打开网址

Set ie = CreateObject("internetexplorer.application")
ie.navigate "http://tieba.baidu.com/f?kz=205761378"
ie.Visible = True
While ie.busy Or ie.readystate <> 4
Wend
ie.document.Post.co.Focus
ie.document.Post.co.Value = "me"
ie.document.Post.Submit3.Click

为什么不用IE呢?

start "" "遨游程序路径" "网址"