private void btnajouter_Click(object sender, EventArgs e) { Categorie c = (Categorie)cbxCategorie.SelectedItem; MemoryStream ms = new MemoryStream(); imgprod.Image.Save(ms, imgprod.Image.RawFormat); byte[] img = ms.ToArray(); decimal prix; prix = Convert.ToDecimal(txtprix.Text); Produit m = new Produit(0, txtnom.Text, txtdesc.Text, c, prix, img); ProduitDAO bd = new ProduitDAO(); bd.Add(m); }