VBS打开网址问题
Set objShell = CreateObject("Wscript.Shell")
objShell.Run(url)
我用上面的方法循环打开网址,每次打开的网址都在新窗口,请问有什么办法让他每次打开的网址都覆盖上次打开的窗口呢?类似于我们平时自己定义超链接target属性的名字一样。
[解决办法]
直接用InternetExplorer.Application呢?
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Navigate "http://www.google.com"