private void media_options_Click(object sender, EventArgs e) { Output_Media frm = new Output_Media(textBox1.Text); frm.Show(); this.Close(); }
private void button3_Click(object sender, EventArgs e) { if (zccvariables.mainMenuChoice == 3) { //List_wizard zccvariables.floatingPointOptions = true; List_wizard frm = new List_wizard(textBox1.Text); frm.Show(); this.Close(); } if (zccvariables.mainMenuChoice == 2) { if (zccvariables.classicCompiler == true) { Output_Media frm = new Output_Media(textBox1.Text); frm.Show(); this.Close(); } //output media not supported on new compiler if (zccvariables.classicCompiler == false) { zorg frm = new zorg(textBox1.Text); frm.Show(); this.Close(); } } }
private void button3_Click(object sender, EventArgs e) { if (zccvariables.mainMenuChoice == 3) { //List_wizard zccvariables.floatingPointOptions = true; List_wizard frm = new List_wizard(textBox1.Text); frm.Show(); this.Close(); } else { Output_Media frm = new Output_Media(textBox1.Text); frm.Show(); this.Close(); } }