hi,

I have to store a lot of elements into a database. That takes some time and a progress dialog is necessary to give feedback to the user. Sometimes an element is already in the database and the user has to decide to skip or to replace it. Now the dialog querying the users decision pops up and the QProgressDialog shadows it. If the user closes the QProgressDialog to answer the query the progress dialog is flagged as cancelled resulting in an abort of the operation.

It would need some method to pause the progress dialog, hiding it and passing control to the query dialog and after the user has answered the progress dialog is reactivated again. Probably the solution is easy if I would have a clue what to look for. Any idea? hide() and show() won't work as the hide timeout of the QProgressDialog will interfere.

thanks

Oliver