VB.Net 控制台应用程序中的线程
我有一个用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该创建一个新进程并将控制权返回给您的控制台应用程序。
您可以通过存储返回值来对此过程执行更多操作:
然后在应用程序退出时调用此方法
请参阅:http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx 了解有关进程的详细信息。
请参阅:.NET 控制台应用程序退出事件,了解有关将应用程序退出作为事件处理的信息。
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:
Then call this when your application exits
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.