void data_cbo_coleccionid() { try { tb_pt_coleccionBL BL = new tb_pt_coleccionBL(); tb_pt_coleccion BE = new tb_pt_coleccion(); coleccionid.DataSource = BL.GetAll(EmpresaID, BE).Tables[0]; coleccionid.ValueMember = "coleccionid"; coleccionid.DisplayMember = "coleccionname"; } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void data_Tablacoleccion() { try { if (Tablacoleccion.Rows.Count > 0) { Tablacoleccion.Rows.Clear(); } var BL = new tb_pt_coleccionBL(); var BE = new tb_pt_coleccion(); BE.coleccionname = txt_criterio.Text.Trim().ToUpper(); Tablacoleccion = BL.GetAll(EmpresaID, BE).Tables[0]; if (Tablacoleccion.Rows.Count > 0) { btn_imprimir.Enabled = true; gridcoleccion.DataSource = Tablacoleccion; gridcoleccion.Rows[0].Selected = false; gridcoleccion.Focus(); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }