使用 Windows 窗体应用程序时 Vb.net 从控制台读取

发布于 2024-12-06 06:49:06 字数 444 浏览 0 评论 0原文

大家好,我在从 Windows 窗体应用程序读取和写入控制台时遇到问题。

我正在运行 Visual Studio 2010,并使用 Visual Basic 进行编码。

我当前的代码如下:

Declare Function AttachConsole Lib "kernel32.dll" (ByVal dwProcessId As Int32) As Boolean
Declare Function FreeConsole Lib "kernel32.dll" () As Boolean
System.Console.Write("abc")
Dim test as string = Console.ReadLine()
System.Console.Clear()
ect
FreeConsole()

使用以下代码,我可以写入控制台,但无法从中读取,有什么想法吗?

Hi all I have a problem with reading and writing to the console from a windows form application.

I am running visual studios 2010 and I am coding in visual basic.

The current code that I have is as follows:

Declare Function AttachConsole Lib "kernel32.dll" (ByVal dwProcessId As Int32) As Boolean
Declare Function FreeConsole Lib "kernel32.dll" () As Boolean
System.Console.Write("abc")
Dim test as string = Console.ReadLine()
System.Console.Clear()
ect
FreeConsole()

With the following code I can write to the console but I cannot read from it, any ideas?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文