![]() |
Form verschwindet nicht von Taskleiste trotz code !
Guten Tag..
Ich Programmiere grade ein Programm ( in Delphi 2007 ) das wärend der Laufzeit immer wieder sein Größe und seinne Sichtbarkeit ändert. Um eine Form nun von der Taskleiste zu nehmen nehme ich gewöhnlich diesen Code :
Delphi-Quellcode:
Doch wirkt dieser bei meinem Programm nicht mehr !
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 ); Hier mal mein QuellCode :
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
begin Timer1.Enabled := True; end; procedure TForm1.FormCreate(Sender: TObject); begin Form1.Height := Screen.Height; Form1.Width := 215; 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 ); end; procedure TForm1.Timer1Timer(Sender: TObject); begin while Not(Form1.Width = 1) do Form1.Width := Form1.Width - 1; Form1.Visible := False; Timer1.Enabled := False; end; procedure TForm1.Timer2Timer(Sender: TObject); begin Form1.Visible := True; while Not(form1.Width = 215) do Form1.Width := Form1.Width + 1; Timer2.Enabled := False; end; procedure TForm1.Timer3Timer(Sender: TObject); begin if Mouse.CursorPos.x = Screen.Width - 1 then Timer2.Enabled := True; Timer4.Enabled := True; end; procedure TForm1.Timer4Timer(Sender: TObject); begin if (Form1.Width = 215) and (Mouse.CursorPos.X < Screen.Width - Form1.Width) then Timer1.Enabled := True; Timer4.Enabled := False; end; procedure TForm1.WMWindowPosChanging(var Message: TWMWINDOWPOSCHANGING); begin Message.WindowPos.y := 0; Message.WindowPos.x := Screen.WorkAreaWidth - Width; end; end. EDIT: // Habe grade mal nen TestProjeckt erstellt und gemerkt das der Code garnicht mehr wirkt das Programm bleibt immer in der Taskbar. Als ich es aber in D7 probierte funktionierte es !??? :shock: |
Re: Form verschwindet nicht von Taskleiste trotz code !
You cannot resize the Form Width to 0 with Form's BorderStyle is bsSizable. You should change it to bsNone.
|
Re: Form verschwindet nicht von Taskleiste trotz code !
Zitat:
That's not the problem. The Form Style is set to bsNone. The Problem is that the form is visible on the taskbar and the Code (what should make the button on the taskbar invisible) doesn't work on D2007 but i've tried it on D7 and there it works.. Sorry for my bad englisch :D |
Re: Form verschwindet nicht von Taskleiste trotz code !
Hallo
Dies versteckt doch auch die Hauptform von der Taskleiste?
Delphi-Quellcode:
Zudem: Sind wirklich 4 Timer nötig? Überdenke evtl. mal das Programmdesign.
ShowWindow(Application.Handle, SW_HIDE);
|
Re: Form verschwindet nicht von Taskleiste trotz code !
Nja die Timer sind inzwischen schon in funktionen "umgewandelt".
Aber der Code :
Delphi-Quellcode:
Funktioniert ebend nicht...(Delphi 2007).
ShowWindow(Application.Handle, SW_HIDE);
In D7 funktioniert es aber schon. |
Re: Form verschwindet nicht von Taskleiste trotz code !
ich hab die Erfahrung gemacht dass, das Create-Event dafür ein schlechter Platz ist. Denn wenn danach noch ein Recreatewnd aufgerufen wird, so wird das Handle neu alociert und deine Änderungen werden nicht auf das neue Handle übertragen.
|
Re: Form verschwindet nicht von Taskleiste trotz code !
Zitat:
|
Re: Form verschwindet nicht von Taskleiste trotz code !
Zitat:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 13:36 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