本文介绍了设置正在运行的程序的优先级的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
一段时间以来,我一直在寻找这个答案,如何在vb.net中设置正在运行的程序的优先级,例如记事本?
请帮助我找不到答案. :doh:
I have been looking around for this answer for some time now how do you set the prioty of a running program in vb.net so for example notepad?
Please help I can''t find the answer anywere. :doh:
推荐答案
Dim myprocess As New System.Diagnostics.Process()
myprocess.StartInfo.FileName = "C:\myprogram.exe"
myprocess.Start()
myprocess.PriorityClass = ProcessPriorityClass.High
Environment.Exit(1)
这篇关于设置正在运行的程序的优先级的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!