在 Visual Basic 中运行任务?
我正在用 VB 编写一个小应用程序,我想知道如何设置它,以便当用户按下按钮时,运行预定任务。请记住,该任务已经创建,我只需要运行它即可。
有什么想法吗?
谢谢
I am writing a small app in VB and I would like to know how I would set it up so that when a user pressed a button, a sechduled task is ran. Keep in mind that this task is already created, I just need it to run.
Any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 System.Diagnostics.Process 类。您可以创建一个进程并使用 Process.Start() 方法运行它。
编辑:
以下代码示例启动 helloworld.exe。这只是为了提供有关 Process 类的想法。您可以在 Process.Start Method 中找到此示例
Use the System.Diagnostics.Process class. You can create a process and run it with Process.Start() method.
EDIT:
Following code sample starts the helloworld.exe. This is just to give an idea about the Process class. You can find this example in Process.Start Method
使用最近添加的 System.Threading.Tasks 库怎么样?
链接: http://msdn.microsoft.com/en-us /library/system.threading.tasks.aspx
How about using the recently added System.Threading.Tasks library?
Link: http://msdn.microsoft.com/en-us/library/system.threading.tasks.aspx