Registriert seit: 20. Jun 2004
Ort: Berlin
89 Beiträge
Delphi 7 Enterprise
|
Re: 2. Taskbar-Eintrag für Prog.
21. Sep 2006, 12:28
Moin,
hab diesen tipp bei den schweizern gefunden.
http://www.swissdelphicenter.com/de/showcode.php?id=775
Code:
type
TForm2 = class(TForm)
protected
procedure CreateParams(var Params: TCreateParams); override;
end;
{....}
implementation
{....}
procedure TForm2.CreateParams(var Params: TCreateParams);
begin
inherited;
Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW;
end;
// To Show a Form in the taskbar anytime:
SetWindowLong(FromX.Handle, GWL_EXSTYLE, WS_EX_APPWINDOW);
Thomas H.
|