Exemple #1
0
 private void txtBuscar_KeyUp(object sender, KeyEventArgs e)
 {
     try
     {
         Tambo_Negocio tamboNegocio = new Tambo_Negocio();
         this.dgvTambos.DataSource = tamboNegocio.FiltrarPorNombre(this.txtBuscar.Text, idtambo, Principal.Usuario.Id_usuario);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Ocurrió un error", MessageBoxButtons.OK);
     }
 }