private void zorg_options_Click(object sender, EventArgs e)
        {
            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.mediaOptions = true;

                List_wizard frm = new List_wizard(textBox1.Text);
                frm.Show();

                this.Close();
            }
            if (zccvariables.mainMenuChoice == 2)
            {
                if (zccvariables.classicCompiler == true)
                {
                    optimization frm = new optimization(textBox1.Text);
                    frm.Show();
                    this.Close();
                }
                else 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();
            }
            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();
                }
            }
        }
예제 #4
0
        private void button3_Click(object sender, EventArgs e)
        {
            if (zccvariables.mainMenuChoice == 3)
            {
                //List_wizard
                zccvariables.mediaOptions = true;

                List_wizard frm = new List_wizard(textBox1.Text);
                frm.Show();

                this.Close();
            }
            else
            {
                zorg frm = new zorg(textBox1.Text);
                frm.Show();
                this.Close();
            }
        }