dervel
dervel

Reputation: 78

c# run application without a dos/form window

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

Answers (2)

hwcverwe
hwcverwe

Reputation: 5367

then you need to create a Windows Service.

Visual Studio => New Project => Windows => Windows Service

Here is some more information:

Upvotes: 3

Nikhil Agrawal
Nikhil Agrawal

Reputation: 48568

In windows app setting you can for a form set

ShowinTaskbar = false;

Upvotes: 0

Related Questions