Many times we experienced after Windows 98 era that some dialogs are lost their Z-Order, and moved back to prior form.
For example:
Dialog1.ShowModal;
Dialog1.OnClickButton() : ShowMessage('anything');
When MessageBox appears, sometimes not got focus, it is moved under Dialog1. The users confused on it, because they are say: application freezed!!! But if they are uses AltTab to move another app and back, the focus return to the MessageBox, and it will be the foreground Window.
We experienced this with ShowMessage, MessageBox, normal forms, QuickReport forms also.
Is anyone knows about this? Is it Windows bug? How to prevent it? How to catch this?
Thanks for your help: dd
I really said that AFTER Win98, so it is all OS (Win7 also) affected by this problem. We used Delphi 6 Prof, so the properties are not working with Default forms.
Somebody spoken the message dialogs are controllable with MessageBox + MB_APPLMODAL. This is good news, but we have many of old forms, and components, third party tools.
So it is hard work to making a completely new application with substitution of the forms.
But we will trying with it.
I think the answer is this in a half application problem, in a half Windows problem. If Windows sometimes handle this, and sometimes not - that is seems to be Windows bug. But if we can force the good modal window making then it is programming bug.
Somebody can explain me what is the meaning of the WS_POPUP flag? Is it have some side effect or not?
Thanks: dd