Add the. NET program to the startup Item (Memo)

Source: Internet
Author: User
How to add the. NET program to the startup Item
Private void regcompstartrun (bool cmd) {// obtain the program execution path .. string staruppath = application. executablepath; // indicates the entry-level node in the Window registry. It reads the HKEY_LOCAL_MACHINE registrykey loca = registry in the Windows registry. localmachine; registrykey run = loca. createsubkey (@ "SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Run"); lbldisplay. text + = "execution successful! "; Try {// setvalue: name of the stored value if (CMD) {run. setvalue ("winform", staruppath); // Add to registration. Parameter 1 is the name of the registered node (random)} else {run. deletevalue ("winform", false); // Delete this registered node} loca. close ();} catch (exception ee) {MessageBox. show (EE. message. tostring (), "prompt", messageboxbuttons. OK, messageboxicon. error );}}
With this, the winform program can be automatically run at startup.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.