Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Windows Aktivität abfragen (https://www.delphipraxis.net/171484-windows-aktivitaet-abfragen.html)

Sherlock 8. Nov 2012 14:07

Windows Aktivität abfragen
 
Gibt es eine Möglichkeit, von einem Delphi Programm aus, windows zu fragen, ob es Anwenderaktivitäten gegeben hat?
Anders formuliert: Ich bräuchte so etwas ähnliches wie einen Bildschirmschoner, nur halt von meiner normalen Exe aus. Wenn der Anwender für eine Zeitspanne X nichts am Rechner macht, soll meine Anwendung in der Lage sein, das zu "merken".

Sherlock

Bummi 8. Nov 2012 14:12

AW: Windows Aktivität abfragen
 
Delphi-Quellcode:
function LastInput: DWord;
var LInput: TLastInputInfo;
begin
  LInput.cbSize := SizeOf(TLastInputInfo);
  GetLastInputInfo(LInput);
  Result := GetTickCount - LInput.dwTime;
end;


procedure TForm3.Timer1Timer(Sender: TObject);
begin
    Caption := intToStr(LastInput);
end;

Sherlock 8. Nov 2012 14:55

AW: Windows Aktivität abfragen
 
Boah!
Super! Funktioniert! Danke!
:thumb:

Sherlock


Alle Zeitangaben in WEZ +1. Es ist jetzt 21:45 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz