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();
                }
            }
        }
        private void button3_Click(object sender, EventArgs e)
        {
            //MessageBox.Show("not yet implemented");

            //floating_point frm = new floating_point(textBox1.Text);
            //frm.Show();

            //long wizard
            zccvariables.mainMenuChoice = 3;

            List_wizard frm = new List_wizard();

            frm.Show();


            //this.Hide();
        }
		private void button3_Click(object sender, EventArgs e)
		{
			if (zccvariables.mainMenuChoice == 3)
			{
				//List_wizard
				zccvariables.optimizationOptions = true;

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

				this.Close();
			}
			else
			{
				terminal_driver frm = new terminal_driver(textBox1.Text);
				frm.Show();
				this.Close();
			}
		}
Пример #5
0
        private void button3_Click(object sender, EventArgs e)
        {
            if (zccvariables.mainMenuChoice == 3)
            {
                //List_wizard
                zccvariables.compilerChoice = true;

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

                this.Close();
            }
            else
            {
                verbose_options frm = new verbose_options(textBox1.Text);
                frm.Show();
                this.Close();
            }
        }
Пример #6
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();
            }
        }
        private void button3_Click(object sender, EventArgs e)
        {
            if (zccvariables.mainMenuChoice == 3)
            {
                //List_wizard
                zccvariables.verboseOptions = true;

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

                this.Close();
            }
            else
            {
                option_preserve frm = new option_preserve(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();
            }
        }
        private void button3_Click(object sender, EventArgs e)
        {
            if (zccvariables.mainMenuChoice == 3)
            {
                //List_wizard
                zccvariables.cleanupOptions = true;

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

                this.Close();
            }
            else
            {
                floating_point frm = new floating_point(textBox1.Text);
                frm.Show();
                this.Close();
            }
        }
        //next screen
        private void button1_Click(object sender, EventArgs e)
        {
            //this.Hide();

            //quick start
            if (zccvariables.mainMenuChoice == 1)
            {
                quick_start frm = new quick_start(textBox1.Text);
                frm.Show();
                this.Close();
            }

            //wizard
            if (zccvariables.mainMenuChoice == 2)
            {
                compiler_choice frm = new compiler_choice(textBox1.Text);
                frm.Show();
                this.Close();
            }

            //list wizard
            if (zccvariables.mainMenuChoice == 3)
            {
                //Form1 frm = (Form1)Application.OpenForms["Form1"];

                //List_wizard(textBox1.Text);

                //List_wizard frm = (List_wizard)Application.OpenForms["List_wizard"];
                //frm.Show();



                //List_wizard
                zccvariables.choosenTarget = true;

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

                this.Close();
            }
        }
        private void button3_Click(object sender, EventArgs e)
        {
            //where to next??
            //optimization
            if (zccvariables.mainMenuChoice == 3)
            {
                //List_wizard
                zccvariables.zorgOptions = true;

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

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