private void txtBusqueda_TextChanged(object sender, EventArgs e)
 {
     if (busqueda)
     {
         tablad.Visible = true;
         tabla.FiltrarLocalmenteSinContadorRegistros();
         try
         {
             if (tablad.Rows.Count != 0)
             {
                 tablad.CurrentCell = tablad.Rows[0].Cells[1];
             }
         }
         catch
         {
         }
     }
 }
 private void txtBusquedaClientes_TextChanged(object sender, EventArgs e)
 {
     tabla.FiltrarLocalmenteSinContadorRegistros();
 }