Board logo

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

作者: lqh123108    时间: 2012-2-20 14:56     标题: 两个VBS脚本之间如何互相调用?

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

不知道有没有简便的方法?最好有函数什么得
作者: powerbat    时间: 2012-2-20 17:53

WScript.Arguments
作者: yelangguangzi    时间: 2012-2-26 09:57

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
作者: lqh123108    时间: 2012-2-29 13:57

回复 3# yelangguangzi

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

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

另外,二楼的怎么使用?
作者: powerbat    时间: 2012-2-29 19:26

本帖最后由 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
作者: lqh123108    时间: 2012-3-19 20:33

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



    高,实在是高
    谢谢




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2