第一种方法 InternetExplorer.Application 代码如下: StartURL = "www.tulaoshi.com" set IE = CreateObject("InternetExplorer.Application") IE.Visible = true IE.Navigate StartURL 第二种方法 WScript.Shell 代码如下: dim Wsh Set Wsh=WScript.CreateObject("WScript.Shell") On error Resume Next Wsh.Run "www.tulaoshi.com" 下面的...
[ 查看全文 ]