CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Threaded View

  1. #1
    Join Date
    Jan 2008
    Posts
    2

    Arrow How do I launch app

    I am writing a configurable launcher for custom World of warcraft servers. The problem I am having is when I run the app I get an exception. The exception I get is it can't find the program. I am using the app settings object in c# i.e. settings1.settings. The data I put in stays put and is being called to the main form.

    Code:
     string InstallPath = Properties.Settings1.Default.path2;
                //MessageBox.Show(InstallPath);
                Process.Start(InstallPath + "WoW.exe");
                Application.Exit();
    When it runs Process.Start it throws the file not found exception.

    I have tried putting the data in the settings multiple ways i.e. c:\*** c:\\***\\ \\***\\ just not sure what I need to do. Any help would be appreciated.

    Here is the code i use to save the data to the settings

    Code:
     private void btnSave_Click(object sender, EventArgs e)
            {
                Properties.Settings1.Default.path1 = txtWoW434.ToString();
                
                Properties.Settings1.Default.path2 = txtWoW510.ToString();
                Properties.Settings1.Default.Save();
                ActiveForm.Close();
            }
    Last edited by firedraken; February 25th, 2013 at 11:50 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured