Hi!
i have a form, let say SysTrayForm, wich initialize a new instance of NotifyIcon. I want to make SysTrayForm invisible, but i'm having a problem with it. After disablingthe options, i still see it when a hit "Alt+TAB" in keyboard. Here are some properties:
SysTrayForm.ControlBox = false;
SysTrayForm.Enable = false;
SysTrayForm.FormBorderStyle = none;
SysTrayForm.Opacity = 0%;
SysTrayForm.ShowIcon= false;
SysTrayForm.ShowInTaskbar = false;
I'm using C#. What am i missing?
Thanks!
Jonathan.