当前位置: 编程技术>移动开发
vbs打开ie两种方法 在VBScript中启动IE浏览器的实现代码
来源: 互联网 发布时间:2014-10-13
本文导语: 第一种方法 InternetExplorer.Application 代码如下: StartURL = "www." 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...
第一种方法 InternetExplorer.Application
代码如下:
StartURL = "www."
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."
下面的代码就是自动打开百度并输入进行搜索的代码
代码如下:
Dim wsh,ie
Set wsh = CreateObject("wscript.shell")
Set ie = WScript.CreateObject("InternetExplorer.Application")
URL=" http://www.baidu.com"
code=""
ie.visible = True
ie.navigate URL
WScript.Sleep 1000
wsh.AppActivate "百度一下,你就知道 " ' 引号中填浏览器最上面的标题
wsh.Run "cmd.exe /c echo " & code & "| clip.exe", vbHide
wsh.SendKeys "^v"
wsh.SendKeys "{ENTER}"
代码如下:
Dim wsh,ie
Set wsh = CreateObject("wscript.shell")
Set ie = WScript.CreateObject("InternetExplorer.Application")
URL=" http://www.baidu.com"
ie.visible = True
ie.navigate URL
WScript.Sleep 1000*5
wsh.AppActivate " " ' 引号中填浏览器最上面的标题
WScript.Sleep 1000*1
wsh.SendKeys "帐号" '引号中填帐号
WScript.Sleep 1000*1
wsh.SendKeys "{TAB}"
WScript.Sleep 1000*1
wsh.SendKeys "密码" '引号中填密码
WScript.Sleep 1000*1
wsh.SendKeys "{ENTER}"
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。