Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #107.69K
~1K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for AKJo

Insert the following declaration in the protected section of the child form [CODE]procedure CreateParams(var Params: TCreateParams) ; override;[/CODE] In the body of the child form, insert the body: [CODE] procedure TChildForm.CreateParams(var Params: TCreateParams) ; begin inherited; Params.WndParent := GetDesktopWindow; end;[/CODE] The child form's parent is now the desktop rather than …

Member Avatar for DanHamm
0
1K

The End.