Example #1
0
        private void salirToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            Inicial frmInicial = new Inicial();

            frmInicial.Show();
            this.Close();
        }
Example #2
0
        private void btnSalir_Click(object sender, EventArgs e)
        {
            Inicial inicialForm = new Inicial();

            this.Hide();
            inicialForm.Show();
        }