@ds3216 said in qprogessbar question!!!:
is being updated normally
What do you mean by that? The most common approach I know, is to do some work inside a loop and call setValue() on the QProgressBar. Usually, that loop is inside the main thread which also happens to be the GUI thread. This basically prevents the event loop from handling the update of the progress bar. The easiest way to test this is to put QApplication::processEvents() right after calling setValue() (or setFormat()). This is not the best solution and will heavily slow down your application. So, don't leave it inside your code. Once you confirm that this is the problem, we can help out with a better solution. In that case we would need more context how and when you are calling setValue().