![]() |
Re: [Help] Fenster aus Sysbar...
Meinst du sowas??
Delphi-Quellcode:
procedure TForm1.FormCreate(Sender: TObject);
begin ShowWindow(Application.Handle, SW_HIDE); SetWindowLong(Application.Handle, GWL_EXSTYLE, GetWindowLong(Application.Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW); ShowWindow(Application.Handle, SW_SHOW); end; |
Re: [Help] Fenster aus Sysbar...
ShowWindow ist überflüssig !
MfG |
Re: [Help] Fenster aus Sysbar...
Zitat:
|
Re: [Help] Fenster aus Sysbar...
Mal ausprobieren :coder:
xD EDIT: OK. Haste recht :P
Delphi-Quellcode:
MfG
function HideFromToolbar( ApplicationHandle: Cardinal ): LongInt; assembler;
asm push eax push 0 push eax call ShowWindow pop eax push eax push -20 push eax call GetWindowLong or eax, 128 pop edx push eax push GWL_EXSTYLE push edx call SetWindowLong push 5 push eax call ShowWindow end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 13:09 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz