private void Ajouter_Click(object sender, EventArgs e) { FProduit f = new FProduit(); f.TypeOP = "A"; f.ShowDialog(); }
private void Ajouter_Click(object sender, EventArgs e) { TypeOP = add; FProduit fc = new FProduit(this); fc.Text = "Ajout Nouveau Produit"; fc.MdiParent = this.ParentForm; fc.Show(); }
private void pictureBox2_Click(object sender, EventArgs e) { FProduit f = new FProduit(); f.TypeOP = "M"; DataTable dt = new DataTable(); dt = ProduitDAO.List_Prod_Ref(Txt_Ref.Text); f.Txt_Ref.Text = dt.Rows[0]["Ref_Prod"].ToString(); f.Txt_Desig.Text = dt.Rows[0]["Desig_Prod"].ToString(); f.Cmb_Categ.Text = dt.Rows[0]["Categ_Prod"].ToString(); f.Txt_Prix.Text = dt.Rows[0]["PrixV_Prod"].ToString(); f.Txt_Qte.Text = dt.Rows[0]["Qte_prod"].ToString(); f.ShowDialog(); }
private void Modifier_Click(object sender, EventArgs e) { TypeOP = edit; if (produit != null) { FProduit fc = new FProduit(this); fc.Text = "Modification de Produit"; fc.MdiParent = this.ParentForm; fc.Show(); } else { MessageBox.Show("Selectionné un produit!"); } }