Registriert seit: 7. Okt 2007
31 Beiträge
Delphi 2007 Enterprise
|
Re: Fenster ohne Taskleiste
13. Okt 2007, 19:28
Das einzige was ich gefunden habe ist das
Delphi-Quellcode:
ShowWindow( Application.Handle, SW_HIDE );
SetWindowLong( Application.Handle, GWL_EXSTYLE,
GetWindowLong(Application.Handle, GWL_EXSTYLE) or
WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW);
ShowWindow( Application.Handle, SW_SHOW );
in http://www.delphipraxis.net/internal...ste+verstecken
Aber das Funkt net
|