如何写入已打开的命令提示符?
我需要一次向已打开的命令提示符写入一行(用户迭代过程)。
我想使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Windows API 函数
AttachConsole
(示例 VB 代码)。然后,您可以使用此示例写入 STDOUT。
You can attach to an already open console window using the Windows API function
AttachConsole
(sample VB code).You can then write to STDOUT using this sample.