在 VB 6 中的 Shell 命令中传递参数

发布于 2024-12-31 22:27:38 字数 175 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

舂唻埖巳落 2025-01-07 22:27:38

只需将字符串(可能带引号)附加到文件名末尾:

Shell("""PathName.exe"" wibble", vbNormalFocus)

或者:

Shell("""PathName.exe"" ""wibble"" ""wibble 2""", vbNormalFocus)

然后可以使用 Command$() 函数在其他应用程序中读取该值,该函数将包含路径名之后的所有内容和空格,包括参数周围的任何引号(例如 "wibble" "wibble 2")。

Simply append the string (possibly quoted) to the end of the filename:

Shell("""PathName.exe"" wibble", vbNormalFocus)

or:

Shell("""PathName.exe"" ""wibble"" ""wibble 2""", vbNormalFocus)

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").

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文