private void Buscar() { try { DgvListado.DataSource = NPersona.BuscarClientes(TxtBuscar.Text); this.Formato(); LblTotal.Text = "Total usuarios: " + Convert.ToString(DgvListado.Rows.Count); } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }
private void Buscar() { try { DgvListado.DataSource = NPersona.BuscarClientes(txtBuscar.text); this.Formato(); labelTotal.Text = " TOTAL DE REGISTROS : \t" + Convert.ToString(DgvListado.Rows.Count); } catch (Exception e) { MessageBox.Show(e.Message + e.StackTrace); } }
private void Buscar() { try { DgvListado.DataSource = NPersona.BuscarClientes(txtBuscar.text); if (txtBuscar.text.Equals(Convert.ToString(DgvListado.DataSource))) { MessageBox.Show("no se encuentra", "", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (Exception e) { MessageBox.Show(e.Message + e.StackTrace); } }