I have this application witch is auto-hidden. But I cant open it when I want to. Does someone know how to open a hidden application?
code if have to hide:
protected override void OnVisibleChanged(EventArgs e)
{
base.OnVisibleChanged(e);
this.Visible = false;
}
So, if I run this application, the app completely disappear, not in the taskbar or whatever..
It runs like I want to, but cant open the app when I want to. Please help!