Exemple #1
0
        private void cmdDay_Click(object sender, EventArgs e)
        {
            this.Hide();
            Form fc = Application.OpenForms["FRM_SMT_PU_PROD_DAILY"];

            if (fc != null)
            {
                fc.Show();
            }
            else
            {
                FRM_SMT_PU_PROD_DAILY f = new FRM_SMT_PU_PROD_DAILY();
                f.Show();
            }
        }