Here is the problem:
I want to show a progress bar (just as a text like “Remaining 35%…”) during a C++ function execution. I’ve done the first part which is the progress bar but the problem is how do I show the progress bar during the other functions execution?
I just want to start showing the bar when execution enters a specific function and reach 100% when leaving the function.
How do I do this in C++? any suggestion?
thanks in advance!
/Niklas
Use a separate thread to update the progress bar. That should give “near real” progress of your application.