//Methods
 //Fill Combo  box with categories Stuff
 public void FillComboBox()
 {
     cmbb_CategoryID.DataSource    = Pro.GetAllCategories();
     cmbb_CategoryID.ValueMember   = "ID_Category";
     cmbb_CategoryID.DisplayMember = "Description_Category";
 }