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