private void terminal_options_Click(object sender, EventArgs e)
        {
            //terminal_driver
            terminal_driver frm = new terminal_driver(textBox1.Text);

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