private void floating_point_options_Click(object sender, EventArgs e)
        {
            floating_point frm = new floating_point(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();
            }
        }