private void Ajouterbtn_Click(object sender, EventArgs e) { if (!Donnees.verifier_valeur(NEtxt.Text)) { MessageBox.Show("error", "Le Numéro d'étudiant est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } if (!Donnees.verifier_valeur(Nomtxt.Text)) { MessageBox.Show("error", "Le Nom est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } if (!Donnees.verifier_valeur(Prenomtxt.Text)) { MessageBox.Show("error", "Le Prenom est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } Etudiant N_etudient = new Etudiant(NEtxt.Text + "¿" + Nomtxt.Text + "¿" + Prenomtxt.Text); if (N_etudient.Numero_etudiant == oldetudiant.Numero_etudiant && N_etudient.Nom == oldetudiant.Nom && N_etudient.Prenom == oldetudiant.Prenom) { this.Close(); } Donnees.update_Etudient(oldetudiant, N_etudient); this.Close(); }
private void Ajouterbtn_Click(object sender, EventArgs e) { if (type == "etudient") { if (!Donnees.verifier_valeur(txtbox1.Text)) { MessageBox.Show("error", "Le Numéro d'étudiant est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } if (!Donnees.verifier_valeur(txtbox2.Text)) { MessageBox.Show("error", "Le Nom est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } if (!Donnees.verifier_valeur(txtbox3.Text)) { MessageBox.Show("error", "Le Prenom est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } Etudiant N_etudient = new Etudiant(txtbox1.Text + "¿" + txtbox2.Text + "¿" + txtbox3.Text); Donnees.ajouter_etudient(N_etudient); this.Close(); } else if (type == "cour") { if (!Donnees.verifier_valeur(txtbox1.Text)) { MessageBox.Show("error", "Le Numero de cour est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } if (!Donnees.verifier_valeur(txtbox2.Text)) { MessageBox.Show("error", "Le Code est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } if (!Donnees.verifier_valeur(txtbox3.Text)) { MessageBox.Show("error", "Le Titre est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } Cour N_cour = new Cour(txtbox1.Text + "¿" + txtbox2.Text + "¿" + txtbox3.Text); Donnees.ajouter_Cours(N_cour, etudient); this.Close(); } else if (type == "note") { if (!Donnees.verifier_valeur_double(txtbox3.Text)) { MessageBox.Show("error", "La Note est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } Etudiant et = new Etudiant(N_etudient); Cour c = new Cour(N_cours); Donnees.ajouter_Note(new Note(et.Numero_etudiant + "¿" + c.Numero_cours + "¿" + txtbox3.Text), et.Numero_etudiant); this.Close(); } }
private void Ajouterbtn_Click(object sender, EventArgs e) { if (!Donnees.verifier_valeur(NCtxt.Text)) { MessageBox.Show("error", "Le Numero de cour est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } if (!Donnees.verifier_valeur(Codetxt.Text)) { MessageBox.Show("error", "Le Code est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } if (!Donnees.verifier_valeur(Titretxt.Text)) { MessageBox.Show("error", "Le Titre est incorrect.", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } Cour O_cour = new Cour(oldcour); Cour N_cour = new Cour(NCtxt.Text + "¿" + Codetxt.Text + "¿" + Titretxt.Text); Donnees.update_Cours(O_cour, N_cour, etudient); this.Close(); }