Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 596409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:10:08+00:00 2026-05-13T16:10:08+00:00

How to detect inactive (idle) user in Windows application? I’d like to shutdown application

  • 0

How to detect inactive (idle) user in Windows application? I’d like to shutdown application when there hasn’t been any input (keyboard, mouse) from user for certain period of time.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T16:10:09+00:00Added an answer on May 13, 2026 at 4:10 pm

    To track a user’s idle time you could hook keyboard and mouse activity. Note, however, that installing a system-wide message hook is a very invasive thing to do and should be avoided if possible, since it will require your hook DLL to be loaded into all processes.

    Another solution is to use the GetLastInputInfo API function (if your application is running on Win2000 (and up) machines).
    GetLastInputInfo retrieves the time (in milliseconds) of the last input event (when the last detected user activity has been received, be it from keyboard or mouse).

    Here’s a simple example. The SecondsIdle function returns a number of second with no user activity (called in an OnTimer event of a TTimer component).

    ~~~~~~~~~~~~~~~~~~~~~~~~~
    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
       Caption := Format('System IDLE last %d seconds', [SecondsIdle]) ;
    end;
    

    http://delphi.about.com/od/adptips2004/a/bltip1104_4.htm

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I detect when an Exception has been thrown anywhere in my application?
I am needing to detect when a user is inactive (not clicking or typing)
Is there any way to detect when an app is no longer active? That
I want to develop an Java application that can detect the user logged on
How do I detect what browser (IE, Firefox, Opera) the user is accessing my
Is it possible to detect when the user clicks on the browser's back button?
Is there a winforms event that fires when the user switches from a form
I need to detect when a session has expired in my Visuial Basic web
How do people usually detect the MIME type of an uploaded file using ASP.NET?
How do I detect if the system has a default recording device installed? I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.