The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Twister on March 22, 2011, 03:35:05 AM

Title: [Advice] Progress Bars
Post by: Twister on March 22, 2011, 03:35:05 AM
When you use a progress bar, you should create a thread to interact with the progress bar instead of doing it in your message pump, i.e WndProc function. It will make your application unresponsive, and it will make it frustrating for the end-user.
Title: Re: [Advice] Progress Bars
Post by: hutch-- on March 22, 2011, 07:09:01 AM
Just give it a blast in the main thread, it works by setting the range then at intervals changing the current setting within that range.