Beispiel #1
0
        private void btDejaCompte_Click(object sender, EventArgs e)
        {
            Form f = new Authentification();

            f.Show();
            this.Hide();
        }
Beispiel #2
0
 private void btValider_Click_1(object sender, EventArgs e)
 {
     if (ORM.InscriptionUser(tbUser.Text, tbEmail.Text, tbMDP.Text) == 0)
     {
         MessageBox.Show("Le compte a bien été enregistré");
     }
     else
     {
         Form f = new Authentification();
         this.Hide();
         f.Show();
     }
 }