private void btnNouveau_Click(object sender, EventArgs e)
        {
            try
            {
                designationTxt.Text = "";

                Categorie cat = new Categorie();

                idCateg = cat.Nouveau();
            }
            catch (Exception)
            {
                throw;
            }
        }