Beispiel #1
0
        private void continueButton_Click(object sender, EventArgs e)
        {
            Process p = new Process();

            p.StartInfo.FileName  = "msiexec";
            p.StartInfo.Arguments = "/i \"MySQLODBC32.msi\"";

            p.Start();
            p.WaitForExit();
            //if MySQL not installed AND doing an install.
            if (!programVariables.getMySQLInstalled() && programVariables.getInstall())
            {
                this.Hide();
                installMySQL installMySQLPage = new installMySQL();
                installMySQLPage.Show();
            }
            //if mysql already installed and doing an install
            else if (programVariables.getInstall())
            {
                this.Hide();
                jcmsInstallForm theInstallForm = new jcmsInstallForm();
                theInstallForm.Show();
            }
            else
            {
                this.Hide();
                jcmsUpgradeForm theUpgradeForm = new jcmsUpgradeForm();
                theUpgradeForm.Show();
            }
        }
Beispiel #2
0
        private void continueButton_Click(object sender, EventArgs e)
        {                        
            Process p = new Process();

            p.StartInfo.FileName = "msiexec";
            p.StartInfo.Arguments = "/i \"MySQLODBC32.msi\"";
            
            p.Start();
            p.WaitForExit();
            //if MySQL not installed AND doing an install.
            if (!programVariables.getMySQLInstalled() && programVariables.getInstall())
            {
                this.Hide();
                installMySQL installMySQLPage = new installMySQL();
                installMySQLPage.Show();
            }
            //if mysql already installed and doing an install
            else if (programVariables.getInstall())
            {
                this.Hide();
                jcmsInstallForm theInstallForm = new jcmsInstallForm();
                theInstallForm.Show();
            }
            else
            {
                this.Hide();
                jcmsUpgradeForm theUpgradeForm = new jcmsUpgradeForm();
                theUpgradeForm.Show();
            }
        }
Beispiel #3
0
 private void skipButton_Click(object sender, EventArgs e)
 {
     if (programVariables.getInstall())
     {
         this.Hide();
         jcmsInstallForm theInstallForm = new jcmsInstallForm();
         theInstallForm.Show();
     }
     else
     {
         this.Hide();
         jcmsUpgradeForm theUpgradeForm = new jcmsUpgradeForm();
         theUpgradeForm.Show();
     }
 }
Beispiel #4
0
 private void skipButton_Click(object sender, EventArgs e)
 {
     if (programVariables.getInstall())
     {
         this.Hide();
         jcmsInstallForm theInstallForm = new jcmsInstallForm();
         theInstallForm.Show();
     }
     else
     {
         this.Hide();
         jcmsUpgradeForm theUpgradeForm = new jcmsUpgradeForm();
         theUpgradeForm.Show();
     }
 }
Beispiel #5
0
 private void installButton_Click(object sender, EventArgs e)
 {
     programVariables.setInstall(true);
     if (!programVariables.getODBCInstalled())
     {
         this.Hide();
         ODBCWarning theWarningPage = new ODBCWarning();
         theWarningPage.Show();
     }
     else if (!programVariables.getMySQLInstalled())
     {
         this.Hide();
         installMySQL theMySQLPage = new installMySQL();
         theMySQLPage.Show();
     }
     else
     {
         this.Hide();
         jcmsInstallForm installJCMS = new jcmsInstallForm();
         installJCMS.Show();
     }
 }
Beispiel #6
0
 private void installButton_Click(object sender, EventArgs e)
 {
     programVariables.setInstall(true);
     if (!programVariables.getODBCInstalled())
     {
         this.Hide();
         ODBCWarning theWarningPage = new ODBCWarning();
         theWarningPage.Show();
     }
     else if (!programVariables.getMySQLInstalled())
     {
         this.Hide();
         installMySQL theMySQLPage = new installMySQL();
         theMySQLPage.Show();
     }
     else
     {
         this.Hide();
         jcmsInstallForm installJCMS = new jcmsInstallForm();
         installJCMS.Show();
     }
 }