unresponsive-progressbar

ProgressBar freezes when using multithreading

Hi, I have a ProgressBar that uses the marquee style when a report is being generated. The reason I am doing this is because the ReportViewer control I use takes some time to generate the report thus making the form unresponsive. I generate the report using a thread so the ProgressBar can show that the program is working. However, when ...

How to code a responsive progress bar that uses callback functions?

I have this progress bar that uses callback functions from a third party driver, to display a traditional progress bar in a window called CFProgress. CFProgress *cFM=new CFProgress(); theApp.m_cFM = cFM; cFM->Create(CFProgress::IDD); cFM->ShowWindow(SW_SHOW); thirdpartydriver->set_OnProgress(ProgressFuncC, (void *) cFM); thirdpartydrive...