private void verbose_options_Click(object sender, EventArgs e)
        {
            verbose_options frm = new verbose_options(textBox1.Text);

            frm.Show();
            this.Close();
        }
Ejemplo n.º 2
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();
            }
        }