Re: windows registry service
you might need to explain your situation some more.
Re: windows registry service
i want to create the windows service for my application. how to create the windows service and also, i need to register the windows service. how to do that?
plz if u know help me.
i want to run the application when the system is boot up.
with thanks and regards
MMary
Re: windows registry service
Re: windows registry service
To start an application, use System.Diagnostics.Process.Start
Re: windows registry service
It's still a little foggy exactly what you want. Are you saying that you want to turn your existing application into a service, or that you want to write a service to somehow control your existing application? If you mean the second option, what would this control involve? Are you saying that you just want to start your application when Windows starts, or that you want to run it at specific intervals, or something else?
Re: windows registry service
thank all for the reply. i want to create the window service for the existing application . i am clearly telling my situation. i have developed one software. fist time only(when i am running the software first time) i want to get the information from the user. next time onwards(when boot up or start up of the system), it will hidden some place and run automatically. user can't see the window. this is my situation. so, plz help me to solve the problems.
With thanks and Regards
MMary
Re: windows registry service
Create two applications. One can be the actual windows service (so the window is not visible), one serves as a configuration utility. Whenever your windows service starts, check to see if configuration values have been loaded and if they haven't, run the configuration utility for the user to fill out.
Re: windows registry service
thank u for ur reply.
With thanks and regards
MMary