I would like to know the current idle time from user input on a given Windows XP machine programmatically. I am using VBA in MS Access. What options do I have?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

I used the following to obtain the solution.

Private Declare Function GetTickCount Lib "kernel32" () As Long
Private Declare Function GetLastInputInfo Lib "user32" (plii As Any) As Long

Private Type LastInputInformation

    cbSize As Long

    dwTime As Long

End Type

Public Function GetUsersIdleTime() As Long

    Dim lii As LastInputInformation

    lii.cbSize = Len(lii)

    Call GetLastInputInfo(lii)

    GetUsersIdleTime = FormatNumber((GetTickCount() - lii.dwTime) / 1000, 2)

End Function

There are other parts of the system which can be idle such as,

  • CPU
  • Disk
  • Network
  • Other devices

To find out more regarding performance and other idle types see this SO post here.

link|improve this answer
This is somewhat beyond the scope of the question, but can a benevolent poster please explain what the 'idle time' is? It sounds useful. – PowerUser Apr 7 '10 at 13:27
Thanks for the link. – PowerUser Apr 7 '10 at 14:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.