Console application

  • Thread starter Thread starter VJ
  • Start date Start date
V

VJ

Hi

I have a console application and would like to run that as a service or
Background process... How can I do that?

VJ
 
read the documentation about Service!

basically you have to inherit the service class and implement the run method
 
Create the service project and set it's target to console application.

I read a sample project for this one from "CodeGuru" or "CodeProject" I
can't remember, but you can try to find it and have a look.
 
Back
Top