VB.Net 控制台应用程序中的线程

发布于 2024-11-05 06:44:30 字数 176 浏览 0 评论 0原文

我有一个用 VB.Net 构建的控制台应用程序。现在我在该应用程序中有一个计时器。我想做的就是在某个时间我将调用另一个 exe(它是在 VB 6.0 中内置的)并再次将控制权返回到这个控制台应用程序。 现在发生的情况是,我能够从控制台应用程序调用第二个 exe,但随后控件不会返回到同一个控制台应用程序。 任何帮助将不胜感激。 先感谢您

I have a console application that is built in VB.Net. Now I have a timer in that application. All I want to do is at a particyualr time i will call another exe (which is built in VB 6.0) and again get the control back to this console application.
Now what is happening is that I am being able to call the second exe from the console application , but then the control is not returning back to the same console application.
Any help will be much appreciated.
Thank you in advance

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

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

发布评论

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

评论(1

饮湿 2024-11-12 06:44:30
Process.Start(myProgramPathAndFileName)

这应该创建一个新进程并将控制权返回给您的控制台应用程序。

您可以通过存储返回值来对此过程执行更多操作:

MyProcess = Process.Start(myProgramPathAndFilename)

然后在应用程序退出时调用此方法

MyProcess.Kill

请参阅:http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx 了解有关进程的详细信息。

请参阅:.NET 控制台应用程序退出事件,了解有关将应用程序退出作为事件处理的信息。

Process.Start(myProgramPathAndFileName)

This should create a new process and return control to your console app.

You can do more with this process by storing the return value:

MyProcess = Process.Start(myProgramPathAndFilename)

Then call this when your application exits

MyProcess.Kill

See: http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx for more info on processes.

See: .NET Console Application Exit Event for information on handling Application Exit as an event.

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