Re: Recursive call detected
Are you sure you want to execute a loop that is already being executed? Maybe you want to execute some other loop?
Re: Recursive call detected
Hello,
yes that is what I want to do. This is like a stacked message box in the main UI thread. Any other ideas how to realize that?
Kind regards,
Sebastian
Re: Recursive call detected
Quote:
Originally Posted by
SebastianBecker
This is like a stacked message box in the main UI thread.
Can you stack a message box over the same message box? Because I can only stack two message boxes one over the other... I don't see the point of executing a loop that is already being executed. It's like you wanted to show() a widget, then show() it again and then if you called hide() you would want it to still be visible (because show() was called twice)... It doesn't work that way. Call exec() once and don't call it again until the dialog exits the loop - you can't make a dialog modal to itself.