Tema: Inactividad
Ver Mensaje Individual
  #3  
Antiguo 26-08-2014
Avatar de Casimiro Noteví
Casimiro Noteví Casimiro Noteví is offline
Merodeador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.679
Reputación: 10
Casimiro Noteví Tiene un aura espectacularCasimiro Noteví Tiene un aura espectacular
Código Delphi [-]
function SecondsIdle: DWord; var liInfo: TLastInputInfo; 
begin 
  liInfo.cbSize := SizeOf(TLastInputInfo);
  GetLastInputInfo(liInfo);
  Result := (GetTickCount - liInfo.dwTime) DIV 1000;
end; 

procedure TForm1.Timer1Timer(Sender: TObject); 
begin 
  Label1.Caption := Format('System IDLE last %d seconds', [SecondsIdle]);
end;
Responder Con Cita