Ver Mensaje Individual
  #2  
Antiguo 20-05-2007
Avatar de seoane
[seoane] seoane is offline
Miembro Premium
 
Registrado: feb 2004
Ubicación: A Coruña, España
Posts: 3.717
Reputación: 24
seoane Va por buen camino
¿Que tal con un bucle?
Código Delphi [-]
program miprograma;
uses 
SysUtils;

//Inicia el programa
begin
  while TRUE do
  begin

  end;
end.

Aunque puede que necesitemos que la CPU respire:
Código Delphi [-]
program miprograma;
uses 
SysUtils;

//Inicia el programa
begin
  while TRUE do
  begin
    

    Sleep(10);
  end;
end.
Responder Con Cita