Ver Mensaje Individual
  #4  
Antiguo 28-08-2003
sanxpue sanxpue is offline
Miembro
 
Registrado: jul 2003
Posts: 196
Reputación: 21
sanxpue Va por buen camino
Lightbulb

bueno ahi te va una funcion del delay
la utilizo desde el delphi One imaginate

Código:
Procedure Delay(mSecs : Integer);
Var
   PrimerTC : LongInt;
Begin
  PrimerTC := GetTickCount;
  Repeat
     Application.ProcessMessages;
  Until ((GetTickCount-PrimerTC) >= Longint(mSecs));
End;


saludos desde Puebla, Mexico
asanxt@hotmail.com
Responder Con Cita