如何写入已打开的命令提示符?

发布于 2024-08-23 20:41:48 字数 122 浏览 2 评论 0原文

我需要一次向已打开的命令提示符写入一行(用户迭代过程)。

我想使用VB或VBA。我知道有AppActivate,但是如何写入它呢?

命令提示符由另一个程序运行(我无法触及)。

建议?

I need to write one line at a time (user iterative process) to a command prompt that is already open.

I'd like to use VB or VBA. I know there is AppActivate, but then how do you write to it?

The command prompt is run by another program (that I can't touch).

Suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

两人的回忆 2024-08-30 20:41:48

您可以使用 Windows API 函数 AttachConsole (示例 VB 代码)。

Private Declare Function AttachConsole Lib "kernel32" (ByVal hConsoleHandle As Long) As Long

然后,您可以使用此示例写入 STDOUT。

You can attach to an already open console window using the Windows API function AttachConsole (sample VB code).

Private Declare Function AttachConsole Lib "kernel32" (ByVal hConsoleHandle As Long) As Long

You can then write to STDOUT using this sample.

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