I'd like to hide the taskbar entry to maximize effective space since the app has a systray icon, i dont need the taskbar entry. The app doesnt allow you to only have a systray instead of both.

How can I hide a taskbar entry but keep the window form?

Thanks,

Dennis

link|improve this question

1  
For what framework? Some provide a property for this (C# windows forms has a ShowInTaskbar property on the Form object) – rslite Oct 12 '09 at 11:11
ShowInTaskbar came to mind first time I read the question. Then I realized it might not be a programming question. Anyway, +1 – tzup Oct 12 '09 at 11:17
1  
This is not programming related. The OP just wants to hide the taskbar entry of a generic program, not a self-written one. superuser.com/questions/54284/… – Sasha Chedygov Oct 15 '09 at 4:12
for windows application which is able to do this see: superuser.com/questions/54284/… – c33s Sep 30 '11 at 0:46
feedback

3 Answers

up vote 3 down vote accepted

In what language is your application written?

The API call you want is called SetWindowLong.

Example Delphi code would be:

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;
link|improve this answer
feedback

Following is for MSVC:

if (bShow)
    ModifyStyleEx(0, WS_EX_APPWINDOW);
else
    ModifyStyleEx(WS_EX_APPWINDOW, 0);

ModifyStyleEx documentation is here.

Links:

link|improve this answer
Oops, i didn't mean programming code but an actual program. Thanks for the suggestions though! – FLX Oct 12 '09 at 13:33
This site is for programming questions. If you are searching for a handy tool, ask the same question on superuser.com. Hope this helps. – Andrejs Cainikovs Oct 12 '09 at 13:38
feedback

.NET

Solution for C# would be:

ShowInTaskbar = false;

Solution for VB.NET would be:

ShowInTaskbar = False
link|improve this answer
Shouldn't you also read the comments before posting? rslite had already answered for .Net – tzup Oct 12 '09 at 11:21
1  
@tzup: rslite should have made his comment an answer. @awe: it might help to mention that ShowInTaskbar is a Form method. – MusiGenesis Oct 12 '09 at 11:49
feedback

Your Answer

 
or
required, but never shown

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