How to set priority of a specific thread

Rex

Member
Joined
Jan 3, 2008
Messages
9
Programming Experience
10+
I'm supporting a Desktop application developed with VB .NET using Visual Basic 2003. My application starts a background process that runs while the user can perform other Desktop functions. Sometimes those functions consume sufficient computer resources that my background process doesn't have sufficient resources to run properly.

How can I give the background process a higher priority to help give it the resources it needs to run properly???
 
Set the Priority property of the thread.
 
Back
Top