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