blackeyes 发表于 2015-1-2 22:57:03

愁死了,runwait带的命令行参数一直整不明白了

问题是这样的
原命令格式如下:

abc.exe-u 123 -e text -a "d:\abc\m.txt" -t post -s text2

现在是
path=$filepath&"\m.txt"

即path是上面abc.exe -a参数后面的值

那这样的命令用runwait()怎么写啊
RunWait("abc.exe-u 123 -e text -a $path -t post -s text2")
上面这个一编译就出错,怎么改也不好用

afan 发表于 2015-1-2 23:05:32

RunWait('abc.exe-u 123 -e text -a "' & $path & '" -t post -s text2')

blackeyes 发表于 2015-1-2 23:13:25

哈哈,版本出来了,讲一下要点吧
如果原命令行是:abc.exe-u “123” -e text -a "d:\abc\m.txt" -t post -s text2

那代码应该怎么写啊

netegg 发表于 2015-1-2 23:24:30

本帖最后由 netegg 于 2015-1-2 23:27 编辑

runwait('abc.exe-u "123" -e text -a "d:\abc\m.txt" -t post -s text2')

wangms 发表于 2015-1-4 07:33:42

谢谢分享。。。。。。。。。。

sh1536 发表于 2015-1-4 08:30:59

回复 2# afan


    顶一个!!!!!!
页: [1]
查看完整版本: 愁死了,runwait带的命令行参数一直整不明白了