Click here to Skip to main content
15,867,934 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
The GUI(sensor system ) application contains 4 projects( I'm planning to add one button in my gui applicaion main form when i click that button entire gui should start as windows service).. now my questn is how to make entire gui as windows service ..



Regards,
harini
Posted
Updated 27-Nov-12 19:34pm
v2

1 solution

First add the object of the registrykey....


RegistryKey rkApp = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);

//In the page load
//Activate the project as startup
rkApp.SetValue("AppName", Application.ExecutablePath.ToString());
//deactivate the project
rkApp.DeleteValue("AppName", false);
 
Share this answer
 
Comments
harini bangalore 28-Nov-12 1:46am    
thanks for the anz.. anyay i new to this concept, what is that rigistry key? why it is required?
nagalkumar 28-Nov-12 4:09am    
Refer the following link
http://msdn.microsoft.com/en-us/library/microsoft.win32.registrykey.aspx

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900