Click here to Skip to main content
16,010,489 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello,

Now i am working in Installer. Here i am using winform during installation. So when win form is opening in the taskbar winform will be set. But i dont want to show the winform in taskbar. how to acheive this? Please help me

Thanks
Posted

C#
public Form1()
        {
            ShowInTaskbar = false;
        }
 
Share this answer
 
You can set form's property

C#
ShowInTaskbar = false;


And that will not be seen in the taskbar.

-Thanks.
 
Share this answer
 
v2
C#
this.ShowInTaskbar = false;

or u can write

C#
this.ShowInTaskbar = false;


hope this will help u :)
 
Share this answer
 
v2
In designer you can set
C#
ShowInTaskbar=false 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900