How can i set the priority of my application?
It should be the high priority on windows, not as high as windows it self, but just below!!
Thank you,
Guilherme Costa
Printable View
How can i set the priority of my application?
It should be the high priority on windows, not as high as windows it self, but just below!!
Thank you,
Guilherme Costa
try this
VB Code:
Dim p As Process() = Process.GetProcessesByName("xxx") 'xxx is your application exe filename without the ".exe" just the name itself p(0).PriorityClass = ProcessPriorityClass.High