标题: [特效代码] VBS或批处理同时打开两个网站如何指定大小? [打印本页]
作者: gx528 时间: 2010-11-3 16:59 标题: VBS或批处理同时打开两个网站如何指定大小?
用 VBS 或批处理同时打开两个网站 能能定大小
指定IE
我已经做到了 就是控制不了大小
高手们帮下
Set oShell = WScript.CreateObject ("WSCript.shell")
oShell.run("iexplore.exe http://baidu.com")
oShell.run("iexplore.exe http://zhidao.baidu.com")
在我的基础上 帮我做个能控制打开窗口大小
如果可以能做到一打开就两个窗口拼排 最好
作者: gx528 时间: 2010-11-4 14:38
怎么没人理我呢???????????
作者: broly 时间: 2010-11-4 21:51
用
set ie = wscript.createobject("internetexplorer.application")
调用这个控件,会有一些属性可以设置。
由于我刚开始学习VBS,还在尝试写代码中
作者: zz100001 时间: 2010-11-4 22:49
楼上的代码可以办到。
作者: gx528 时间: 2010-11-5 15:08
原帖由 broly 于 2010-11-4 21:51 发表
用
set ie = wscript.createobject("internetexplorer.application")
调用这个控件,会有一些属性可以设置。
由于我刚开始学习VBS,还在尝试写代码中
给具体点嘛,谢谢 啦
作者: paladinjin 时间: 2010-11-5 16:00
参考InternetExplorer.Application的属性和方法
作者: broly 时间: 2010-11-5 22:53 标题: 回复 5楼 的帖子
测试可用
- dim ie1,ie2,avW,avH
- set ie1 = wscript.createobject("internetexplorer.application")
- set ie2 = wscript.createobject("internetexplorer.application")
- avW = createobject("htmlfile").parentWindow.screen.availWidth
- avH = createobject("htmlfile").parentWindow.screen.availHeight
- with ie1
- .visible = true
- .navigate("http://www.baidu.com")
- .width = avw/2
- .height = avh
- .left = 0
- .top = 0
- end with
- wscript.sleep 1000
- with ie2
- .visible = true
- .navigate("http://ip138.com")
- .width = avw/2
- .height = avh
- .left = avw/2
- .top = 0
- end with
- set ie1 = nothing
- set ie2 = nothing
复制代码
作者: gx528 时间: 2010-11-7 15:48
怎么用不了呀?
??
作者: broly 时间: 2010-11-7 20:14 标题: 回复 8楼 的帖子
你的是什么系统的。WIN7测试似乎用不了,WINXP SP3测试可用
作者: gx528 时间: 2010-11-8 00:18
我的系统也是XP SP3
作者: wc726842270 时间: 2010-11-8 02:05 标题: 回复 10楼 的帖子
换个文件名试试,以后不要再用1.bat和1.vbs.
作者: broly 时间: 2010-11-8 10:02 标题: 回复 10楼 的帖子
你的默认浏览器是不是IE?
如果不是,请调为IE
作者: gx528 时间: 2010-11-16 14:01
可以用啦,谢谢啊!!!!!
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |