private void timerBusqueda_Tick(object sender, EventArgs e)
 {
     if (sTextoActual.Trim() == sTextoAnterior.Trim())
     {
         if (TimerTiempoBase.ElapsedMilliseconds > 1000)
         {
             frmPreloading frm2   = new frmPreloading(this);
             int           iTotal = ProfileSearch.LoadProfileSearchResult(sTextoActual, sTipoBusqueda, true);
             frm2.Show();
             TxtContadorRegistros.Visible = true;
             TxtContadorRegistros.Text    = "Se han encontrado un total de " + iTotal + " registros en su busqueda";
             TimerTiempoBase.Stop();
             TimerTiempoBase = new Stopwatch();
         }
     }
     else
     {
         TimerTiempoBase.Start();
         sTextoAnterior = sTextoActual;
     }
 }