public void cargarComboBox()
 {
     try
     {
         var dataSource = new List <CATEGORIA>();
         dataSource = categoriaDAL.obtenerCategorias();
         this.comboCB.DataSource = null;
         this.comboCB.Items.Clear();
         this.comboCB.DataSource    = dataSource;
         this.comboCB.DisplayMember = "DESCRIPCION";
         this.comboCB.ValueMember   = "ID_CATEGORIA";
         this.comboCB.Refresh();
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 private void cargarCategorias()
 {
     this.tablaCategorias.DataSource = null;
     this.tablaCategorias.DataSource = categoriaDAL.obtenerCategorias();
 }