WIndows Service in Windows Form
-
I have created a widows service,register it and it is working fine. Now i have created Windows application.RIght Click the solution and click add new item.I have added windows service compiled code and register using "installutil C:\mcWebService\bin\Debug\windowsapplication1.exe" Now when i go to computer->manage->services and start service it gives following error "Error: 1053 the service did not respond to the start or control request in timly fashion" any body has solution for this
-
I have created a widows service,register it and it is working fine. Now i have created Windows application.RIght Click the solution and click add new item.I have added windows service compiled code and register using "installutil C:\mcWebService\bin\Debug\windowsapplication1.exe" Now when i go to computer->manage->services and start service it gives following error "Error: 1053 the service did not respond to the start or control request in timly fashion" any body has solution for this
installutil is for Windows Services, not Windows Applications.
-
installutil is for Windows Services, not Windows Applications.
Then when we create windows aplication and right click to add new item and add windows service class then how this windows service will run
-
Then when we create windows aplication and right click to add new item and add windows service class then how this windows service will run
You either want a Windows Application or a Windows Service, you can't have something that's both. If you want both and want them to interact, you'll need to create your own way to do that. What are you trying to do?