void CargarBloqueHoja() { tb_pp_bloqhojacosto BE = new tb_pp_bloqhojacosto(); tb_pp_bloqhojacostoBL BL = new tb_pp_bloqhojacostoBL(); DataTable dt = new DataTable(); dt = BL.GetAll("02", BE).Tables[0]; if (dt.Rows.Count > 0) { cmb_bloquehoja.DataSource = dt; cmb_bloquehoja.ValueMember = "bloqcostid"; cmb_bloquehoja.DisplayMember = "bloqcostname"; } txt_busqueda.Focus(); }
void CargarBloqueHoja2() { tb_pp_bloqhojacosto BE = new tb_pp_bloqhojacosto(); tb_pp_bloqhojacostoBL BL = new tb_pp_bloqhojacostoBL(); DataTable dt = new DataTable(); dt = BL.GetAll(EmpresaID, BE).Tables[0]; if (dt.Rows.Count > 0) { cmb_bloquehoja2.DataSource = dt; cmb_bloquehoja2.ValueMember = "bloqcostid"; cmb_bloquehoja2.DisplayMember = "bloqcostname"; cmb_bloquehoja2.SelectedIndex = -1; } }