
Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
>> How do you remove an icon from the task switcher menu?
"Nicholas Paldino [.NET/C# MVP]" <mvp@spam.guard.caspershouse.com> wrote in
message
> I believe that you can set the ShowInTaskbar property on the Form to
> false, and it will prevent the icon from showing up in the task switcher
> menu. Of course, this will also remove the item from the taskbar (the two
> are linked, I believe).
That removes the icon from the taskbar only. The icon is still in the
switcher
menu. WinAmp and others do it somehow. Such a simple thing has bitten
two projects.
Thanks,
Gary
Gary Brown - 31 Aug 2007 18:51 GMT
>>> How do you remove an icon from the task switcher menu?
> "Nicholas Paldino [.NET/C# MVP]" <mvp@spam.guard.caspershouse.com> wrote
> in message
>> I believe that you can set the ShowInTaskbar property on the Form to
>> false
It works if you also set the FormBorderStyle to ..ToolWindow.
In further Googling the issue I found many copies of my query mirrored on
other sites.
A response on one of them provided the second condition.
Gary