private void Listar() { try { DgvListado.DataSource = NPersona.ListarClientes(); this.Formato(); this.Limpiar(); LblTotal.Text = "Total registros: " + Convert.ToString(DgvListado.Rows.Count); } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }
private void Listar() { try { DgvListado.DataSource = NPersona.ListarClientes(); this.Formato(); this.Limpiar(); labelTotal.Text = "TOTAL DE REGISTROS :" + Convert.ToString(DgvListado.Rows.Count); } catch (Exception e) { MessageBox.Show(e.Message + e.StackTrace); } }