Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- unit Unit2;
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
- type
- TForm2 = class(TForm)
- private
- { Private declarations }
- public
- { Public declarations }
- procedure CreateParams(var Params: TCreateParams); override;
- end;
- var
- Form2: TForm2;
- implementation
- {$R *.DFM}
- procedure TForm2.CreateParams(var Params: TCreateParams);
- begin
- inherited;
- if (FormStyle = fsNormal) then begin
- Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW;
- Params.WndParent := GetDesktopWindow;
- end;
- end;
- end.
Advertisement