Lizard
09-18-2006, 06:50 PM
I have the following code in my Setup Factory 7 project:
StatusDlg.Show(MB_ICONINFORMATION, false);
StatusDlg.SetMessage("\r\n "..message);
StatusDlg.SetTitle(title);
StatusDlg.ShowProgressMeter(false);
and later on, after some other processing:
StatusDlg.Hide();
While the status dialog is in the foreground, everything is fine; however, if I open another window (from any other application) that covers the dialog, when I close that window, the text and the information icon is gone from my status dialog. It's blank, but with the title text intact.
Does anyone know what might be causing this, and how I might prevent it?
StatusDlg.Show(MB_ICONINFORMATION, false);
StatusDlg.SetMessage("\r\n "..message);
StatusDlg.SetTitle(title);
StatusDlg.ShowProgressMeter(false);
and later on, after some other processing:
StatusDlg.Hide();
While the status dialog is in the foreground, everything is fine; however, if I open another window (from any other application) that covers the dialog, when I close that window, the text and the information icon is gone from my status dialog. It's blank, but with the title text intact.
Does anyone know what might be causing this, and how I might prevent it?