how to make application appear as if it's active

NadimAJ

New member
Joined
Feb 26, 2008
Messages
1
Programming Experience
3-5
I have written an app in VB.NET which performs the installation and configuration of various software on a PC. Whenever an external process is excecuted, an MSI Install for example. The application controls blacken including the progress bar! Is there anything I could do to make it seem active?
 
Use the backgroundWorker for this, the background worker will run any code in the DoWork event on a separate thread, this means your main window will not be frozen or appear to not be responding.

The Background worker has a ReportProgress event that you can easily use to update the progressbar on the main form
 
Back
Top