vote up 2 vote down star

I have a modal dialog that is created with the following:

procedure TFormCompose.createParams(var Params: TCreateParams);
begin
     inherited createParams(Params);
     with Params do begin
          exStyle:=exStyle or WS_EX_APPWINDOW;
          wndParent:=getDesktopWindow;
     end;
end;

In this form, I create an instance of TOpenDialog. When it opens, it sends my first modal dialog behind the main application window.

Is there a way to get the TOpenDialog to open without affecting the Z order of the modal dialog?

Thanks!

flag

78% accept rate
1  
Since you're using Delphi 2007, you should probably get rid of your code that changes the parent of the window. The newer versions of Delphi have addressed the problems that typically led to the need to mess with the parent in prior versions. – Rob Kennedy Jun 23 at 18:50

1 Answer

vote up 4 vote down check

What version of Delphi are you using? Delphi 2007 and up add an overloaded TOpenDialog.Execute(ParentWnd: HWND); passing the handle of your modal dialog as the ParentWnd when calling Execute() may help.

For future reference, make sure you specify which version of Delphi. Answers appropriate to Delphi 2009, for example, wouldn't be of much use to you if you were using Delphi 5, and would be a waste of time for the person providing the answer.

link|flag
1  
Delphi 2007. Thanks for pointing that out! – Bill Seven Jun 23 at 18:13
1  
You're welcome. :-) – Ken White Jun 23 at 18:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.