private void button2_Click(object sender, EventArgs e)
        {
            fRegistro registro = new fRegistro();

            this.Visible = false;
            registro.ShowDialog();
            this.Visible = true;
        }
Exemple #2
0
        private void bRegistrate_Click(object sender, EventArgs e)
        {
            fRegistro registro = new fRegistro();

            this.Hide();
            registro.ShowDialog();
            this.Close();
        }