Possible Duplicate:
Writing a Windows system tray application with .NET
Hi,
I am programming an application in .NET and I don't want to put it a windows interface.
I remember some time ago I did it with inheriting from the ApplicationContext class but now I can't achieve it.
How I could do it?
Thanks!
Edit: It's an application that is managed by a notify icon. It must appear the icon near the system clock but not a form. I'm doing this:
class Sync : ApplicationContext
{
public Sync()
{
...
}
}
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Sync());
}