实现ie最大化最小化的完整脚本,在第一步最小化的时候比较慢,不知道什么原因。
Browser("百度一下,你就知道").WinMenu("SystemMenu").Select "最小化(N)"
coun= window("Window").WinToolbar("运行应用程序").GetItemsCount '得到工具栏中的所有程序
For i = 1 to coun
cname= window("Window").WinToolbar("运行应用程序").GetItemProperty(i,"name") '取他们的name值
If cname = "百度一下,你就知道 - Microsoft Internet Explorer" Then
wait 1
window("Window").WinToolbar("运行应用程序").Press i ,micRightBtn
Exit For
End If
Next
index = 5 '最大化操作在右键的第五项。
Set WshShell = CreateObject("Wscript.Shell")
For i = 1 To index
WshShell.sendKeys "{DOWN}" '在弹出的右键菜单中依次下移到第五个
wait 1
Next
WshShell.sendKeys "{ENTER}" '选择最大化操作
wait 1
Set WshShell = nothing