private void BtnGenValid_Click(object sender, EventArgs e) { if (OutilsPkdx.VerifFormatGen(MtbNumGen.Text) == true) { Annee an = OutilsPkdx.ConvertAnnee(CbxAnnGen.SelectedValue.ToString(), DBConst.lstSelectAnnee); OutilsPkdx.CreatGen(int.Parse(MtbNumGen.Text), an, DBConst.lstSelectGen); // On recupere les Generations dans la liste pour DBConst.lstSelectGen = OutilsPkdx.RecupGeneration(); // Remplissage de la ListBox RemplissLstBoxGen(LbxGen, DBConst.lstSelectGen); MessageBox.Show("Insertion année réussie", "Validation", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("format Année invalide ou année déjà présente", "erreur", MessageBoxButtons.OK, MessageBoxIcon.Error); } MessageBox.Show("validation Génération", "validation", MessageBoxButtons.OK, MessageBoxIcon.Information); }