在 VB 6 中的 Shell 命令中传递参数
我在 VB 6 中有 2 个 EXE。 EXE 1 通过 shell 命令 EXE1 调用另一个 EXE2
: Shell(PathName\EXE2,0)
现在我想要的就是将一个字符串类型变量传递给 EXE2,我希望在该 EXE2 中接收该变量。 我怎样才能达到同样的效果?
提前致谢
I have 2 EXEs in VB 6. EXE 1 calls the other EXE2 through shell command
EXE1 :
Shell(PathName\EXE2,0)
Now all I want is to pass a string type variable to EXE2 which I wish to receive in that EXE2.
How can I achieve the same?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将字符串(可能带引号)附加到文件名末尾:
或者:
然后可以使用
Command$()
函数在其他应用程序中读取该值,该函数将包含路径名之后的所有内容和空格,包括参数周围的任何引号(例如"wibble" "wibble 2"
)。Simply append the string (possibly quoted) to the end of the filename:
or:
This value can then be read in the other application using the
Command$()
function which will include everything after the path name and space, including any quotes around the parameters (e.g."wibble" "wibble 2"
).