[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[问题求助] 两个VBS脚本之间如何互相调用?

现在有两个脚本,一个脚本如
  1. msgbox "内容",,"标题"
复制代码
另一个脚本是控制上面脚本的输入内容项
可以反复使用

不知道有没有简便的方法?最好有函数什么得

WScript.Arguments

TOP

set tch=wscript.createobject("wscript.shell")
tch.run "test.vbs"
set tch=nothing
两个VBS脚本之间可以如此相互调用,参数不知道如何传递。

你要的效果,一个脚本就可以了。
option explicit
dim nr,bt
nr=inputbox("输入显示内容","显示内容")
bt=inputbox("输入显示标题","显示标题")

call xs (nr,bt)

sub xs (rn,tb)
msgbox rn,,bt
end sub

TOP

回复 3# yelangguangzi

set tch=wscript.createobject("wscript.shell")
tch.run "test.vbs"  →这里怎么加参数..
set tch=nothing
两个VBS脚本之间可以如此相互调用,参数不知道如何传递。

关键是这个参数如何传递???

另外,二楼的怎么使用?

TOP

本帖最后由 powerbat 于 2012-3-19 21:21 编辑
  1. '1.vbs
  2. set tch=wscript.createobject("wscript.shell")
  3. tch.run "2.vbs arg1 ""hello, vbs"" arg3"
  4. 'do something else.
  5. set tch=nothing
  6. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  7. '2.vbs
  8. set args = WScript.Arguments
  9. for i=0 to args.length-1
  10.     msgbox args(i)
  11. next
复制代码
Referrence
Windows脚本技术手册(script56.chm)
http://www.bathome.net/thread-1985-1-1.html
1

评分人数

TOP

Referrence
Windows脚本技术手册(script56.chm)
powerbat 发表于 2012-2-29 19:26



    高,实在是高
    谢谢

TOP

返回列表