private void CargarFuncionBuscar() { try { CboBuscar.DataSource = NFuncion.Listar(); CboBuscar.ValueMember = "id_funcion"; CboBuscar.DisplayMember = "Descripcion"; } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }
private void Listar() { try { DgvListado.DataSource = NFuncion.Listar(); this.Limpiar(); //this.Formato(); LblTotal.Text = "Total Registros: " + Convert.ToString(DgvListado.Rows.Count); } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }