vote up 1 vote down star
2

Hi,

The following code works fine in Delphi 7. However, in Delphi 2009 the form does remain hidden but the button on the taskbar is now appearing.

ShowWindow(Handle, SW_HIDE);
SetWindowLong(Handle, GWL_EXSTYLE, GetWindowLong(Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW );
ShowWindow(Handle, SW_SHOW);

The above code is called in the FormCreate method.

flag

The form does NOT remain hidden for me in D2007 nor D2009 with your exact code. Which seems what you want for whatever reason if you put this: ShowWindow(Handle, SW_SHOW); Seemed to me you wanted to SHOW it not HIDE it. Please update and precise your question as it appears you want the opposite.. – François Mar 26 at 1:54
The above code is used to remove the form button from the taskbar pre 2009. The goal is just to get the form's taskbar button to stop appearing. I have writtin a small test app and that code seems to work fine. However, in this particular instance it seems as the it is the Applications hidden form. – James Mar 26 at 9:08
Deleted my answer, since it didn't seem to work... – onnodb Mar 26 at 10:56

4 Answers

vote up 3 vote down

You need to set the ShowMainForm and MainFormOnTaskBar properties to False before the form is created.

Open your project source and set MainFormOnTaskBar and ShowMainForm to False, before the form is created.

Application.Initialize;
Application.MainFormOnTaskbar := false;
Application.ShowMainForm := false;
Application.CreateForm(TForm1, Form1);

Then on your main form add the following code to the FormActivate and FormShow events.

procedure TForm1.FormActivate(Sender: TObject);
begin
 // hide taskbar button
 ShowWindow(Application.Handle, SW_HIDE);
end;
procedure TForm1.FormShow(Sender: TObject);
begin
 // hide taskbar button
 ShowWindow(Application.Handle, SW_HIDE);
end;

I have tested with Dephi 2007 and 2009. Additional information is available here.

link|flag
vote up 3 vote down check

Hi one of my collegues found the resolution to this question.

Turns out the reason we were seeing the Application window on the taskbar was a simple setting similar to stukelly's answer but not quite.

To get the main form to appear on the task bar and hide the application menu you apply:

Application.MainFormOnTaskbar := True;
Application.ShowMainForm := False;

No code behind the form create or anything required.

link|flag
Thanks for posting your solution back on stack overflow. I thought you wanted to hide the taskbar button and the main form. – stukelly Apr 28 at 8:59
vote up 0 vote down

Also tested to no avail.

I believe the form button that is appearing is the Application's hidden main form, not one of the Delphi forms I have created.

Have tried pretty much everything I can think of and the taskbar button still appears. If you use SW_MINIMIZE the task bar button dissappears, but the form is just minimized, then once you maximize it then goes back onto the taskbar.

link|flag
Have you removed the code from the FromCreate event? I have tested the above code with Delphi 2009 on Windows 2000 and XP – stukelly Mar 26 at 16:29
This is not an answer. Rather than doing this, you should edit your question, or use the comment feature if you have sufficient rep. – Argalatyr Mar 27 at 2:04
So you think the code shouldn't be called in the FormCreate event? – James Mar 27 at 8:47
What are you trying to achieve in the FormCreate event? You can set the BorderStyle of your Form at design time. tinyurl.com/c34ysu – stukelly Mar 27 at 9:13
vote up -1 vote down

I tried your code in D2007 and D2009 and I get the exact same result: the Form is visible.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.