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).
Asked
Active
Viewed 741 times
2 Answers
3
then you need to create a Windows Service.
Visual Studio => New Project => Windows => Windows Service
Here is some more information:
hwcverwe
- 5,097
- 7
- 33
- 58
0
In windows app setting you can for a form set
ShowinTaskbar = false;
Nikhil Agrawal
- 44,717
- 22
- 115
- 201