private void button1_Click(object sender, EventArgs e) { IGestionProduitDAO IGPDAO = new GestionProduitDAO(); comboBox2.Items.Clear(); foreach (var item in IGPDAO.ListerProduit(comboBox1.Text)) { comboBox2.Items.Add(item.Nom); } }
private void button2_Click(object sender, EventArgs e) { IGestionProduitDAO IGPDAO = new GestionProduitDAO(); foreach (var item1 in IGPDAO.ListerProduit(UF_Combo_Box.Text)) { AP_Combo_Box.Items.Remove(item1.Nom); NP_Combo_Box.Items.Remove(item1.Nom); } }
private void test_Load(object sender, EventArgs e) { if (this.Etats.Count == cmp) { using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"C:\Users\Meher_\Documents\Visual Studio 2013\Projects\feeder_meher\feeder\bin\Debug\Rapport_Prevision_Buse.txt", false)) { } } IGestionProduitDAO IGPDAO = new GestionProduitDAO(); foreach (var item1 in IGPDAO.ListerProduit(this.Etat.UF)) { comboBox1.Items.Add(item1.Nom); comboBox2.Items.Add(item1.Nom); } }