![]() |
Programm aus Windowsstartleiste ausblenden.
Programm aus Windowsstartleiste ausblenden. Mit welche Funktion kann ich das realisieren? :)
|
Re: Programm aus Windowsstartleiste ausblenden.
Wenn du damit meinst, dass Programm in der Taskleiste auszublenden, dann bitte die Suche benutzen, gibts schon x mal, wenn nicht, musst du mir genauer erklären was du meinst, dann versteh ich nämlich deine Frage nicht.
|
Re: Programm aus Windowsstartleiste ausblenden.
Hab mal was bei den
![]() Sieht so aus:
Delphi-Quellcode:
private
procedure WMSysCommand(var msg: TWMSysCommand); message WM_SysCommand; procedure TMainForm.WMSysCommand(var msg: TWMSysCommand); begin if msg.CmdType and $FFF0 = SC_MINIMIZE then hide else inherited; end; procedure TMainForm.FormShow(Sender: TObject); var hwndOwner: HWnd; begin hwndOwner := GetWindow(Handle, GW_OWNER); ShowWindow(hwndOwner, SW_HIDE); // For Windows 2000, additionally call the ShowWindowAsync function: ShowWindowAsync(hwndOwner, SW_HIDE); //Form is invisible, too ShowWindowAsync(Self.Handle, SW_HIDE); //Form is show ShowWindowAsync(Self.Handle, SW_SHOW); end; |
Re: Programm aus Windowsstartleiste ausblenden.
danke robinwie :wink:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 21:10 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 by Thomas Breitkreuz