Windows API to remove my application from taskbar
Hi,
I want to know the Windows Native API which provides the facility to remove my application from taskbar and add on system tray (as Icon). I am working with Unity. Unity doesn't provide any API inbuilt to do this. I want to make this with the help of Windows API.
Thanks in advance.
Re: Windows API to remove my application from taskbar
I'm not sure what you are trying to say. Are you working with the .NET framework? Try using
Code:
this.ShowInTaskbar = false;
Re: Windows API to remove my application from taskbar
Is there some specific reason why you want your application hidden in this way? Most users would not expect this behavior.