indiocolifa Messages: 49 Registered: January 2008 Location: Argentina
Member
luzr wrote on Wed, 16 April 2008 05:43
Hard to say. My guess is that you might be calling Exclamation twice
Another possibility is some sort of "modal loop crossing". Sometimes it can happen that you start another modal loop over the Examlamation's one accidentally. Exclamation can get closed only if its modal loop is exited.
Mirek
Hi Mirek, my MainWindow it's opening modal windows with:
// suppose the window class to be opened is Dialog1
Dialog1 * dlg = new Dialog1();
dlg->Execute();
delete dlg;
May be this is the cause of the "two-click" problem?