Reputation: 78
Anyone knows a way to run a c# application without a window popping up(either form or dos window) or having it at the task bar as an application . I want it to be seen at processes tab at task manager or at the system icons(at the right of the task bar).
Upvotes: 0
Views: 774
Reputation: 5367
then you need to create a Windows Service.
Visual Studio => New Project => Windows => Windows Service
Here is some more information:
Upvotes: 3
Reputation: 48568
In windows app setting you can for a form set
ShowinTaskbar = false;
Upvotes: 0