how to end process

  • Thread starter Thread starter Shaul E
  • Start date Start date
S

Shaul E

Hi!
When I'm activating a certain process from the command line, it ends
immediately. However, when I start the same process from the Visual Studio
..NET enviroment, it never ends (which it should). How do I solve this
problem? P.S. The process is an exe file that runs from a Webservice
(ASP.NET).

Thanks
 
So the process is running on the device? You need to close any runnign
threads and then call Application.Exit();

-Chris
 
Back
Top