Ichibann
Ichibann

Reputation: 4451

Application running in background

How can I write C# application using Visual Studio 2010 that runs in background? By this I mean that it does not run in console or show a Form. Which type of project should I use?

Upvotes: 5

Views: 1881

Answers (2)

Mark Cidade
Mark Cidade

Reputation: 99957

You can use a Windows project that doesn't show any forms, or you can use a Windows Service project.

Upvotes: 3

santiagoIT
santiagoIT

Reputation: 9421

Use a windows service template

Add a new project of type 'Windows->Windows Service'.

Here is a walkthrough

Upvotes: 5

Related Questions