The idle-processing tag has no wiki summary.
9
votes
1answer
1k views
C# - Detect time of last user interaction with the OS
I'm writing a small tray application that needs to detect the last time a user interacted with their machine to determine if they're idle.
Is there any way to retrieve the time a user last moved ...
8
votes
4answers
4k views
How to know the computer is idle now?
Is there any Win32 API to know if the computer is idle or not?
6
votes
3answers
1k views
Why peekmessage before getmessage?
Why the peekMessage statement is required before Getmessage() for creating message queue?
4
votes
1answer
160 views
Python inside GNU Screen eventually becomes idle if Screen is dettached
I have a python script which uses multiprocessing and subprocess to launch multiple external commands in parallel with different arguments. The code can be found here.
For convenience I launch this ...
4
votes
5answers
653 views
Java: Checking if PC is idle
This is a rather tricky question as I have found no information online. Basically, I wish to know how to check if a computer is idle in Java. I wish a program to only work if the computer is in active ...
4
votes
4answers
1k views
How to Prevent ProcessMessages in Delphi
The Application.ProcessMessages command is well known and I use it in long processes to ensure my program will not tie up the computer.
But I have one fairly quick set of processing, where I am ...
3
votes
2answers
116 views
Exception in the OnIdle event does not bubble up
On my main form, I subscribed to two events: Application.ThreadException and Application.Idle. In theory, any exception that is not caught should get bubbled up to the main form. However, this does ...
3
votes
2answers
563 views
Monitoring user idle time
Developing a mac app, how can I tell whether the user is currently at their computer or not? Or how long ago they last pressed a key or moved the mouse?
2
votes
3answers
682 views
Detect user idle (per application instance)
I need user idle detection in my application only (per "my application instance").
I can't use GetLastInputInfo because is session-specific user input:
GetLastInputInfo does not provide ...
2
votes
1answer
873 views
Detecting Idle time in a C# WinForms without Application.Idle
I have a strange issue that I'm not too sure on how to fix or address. I'm writing a mini text editor style application - RichTextBox editor.
I need to do some complex parsing after the Selection ...
2
votes
8answers
1k views
Safest way to idle delphi application to wait for timer?
I am doing a delphi application that will run on my pc 24/7 in the background and will check if it has to do some actions or not, wait 30 minutes and check again, and so on.
How can I make sure the ...
2
votes
1answer
471 views
How to get the idle time in Windows XP using VBA?
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?
2
votes
2answers
534 views
Identifying idle state on a windows machine
I know about the GetLastInputInfo method but that would only give me the duration since last user input - keyboard or mouse. If a user input was last received 10 minutes ago, that wouldn't mean the ...
1
vote
1answer
609 views
Application.Idle event significance
What i know about Application.Idle is application finishes processing and is about to enter the idle state.Here does we do the operation once it becomes idle or just before the moment it becomes ...
1
vote
2answers
647 views
usleep() php5 uses 40% of idle CPU
Hi guys I have a weird question,
I have a cli php script runs on Centos 5.x which uses usleep (somtimes 1sec, sometimes 2sec, somtimes 100ms it depends) if there is some wait required, but what I ...
1
vote
1answer
164 views
Is there a way to detect inactive time of a user in a website? (Idle time)
This is my approach : I reserve last time that a user post a postback to server in a session and in every postback subtract this value from current value. Is there a better way for this? I think that ...
1
vote
1answer
917 views
GetLastInputInfo is user specific - is there something similar which gives machine-wide last input time
As per MSDN, http://msdn.microsoft.com/en-us/library/ms646302%28VS.85%29.aspx
GetLastInputInfo does not provide
system-wide user input information
across all running sessions. Rather,
...
1
vote
7answers
9k views
Trying to connect internally to Oracle, getting an idle instance?
So I have an Oracle instance, and I know it's running on this system, I've su'd to the oracle user, and I'm trying to connect using "/ as sysdba". However, when I do connect, it says the instance is ...
0
votes
0answers
149 views
How to implement MFC's WM_KICKIDLE in Qt?
I am moving an MFC application to Qt. One of the features of MFC we are using is the WM_KICKIDLE event. According to the Qt documentation and articles I've found, we should use a QTimer with an ...
0
votes
1answer
117 views
Third party Application's Idle Session expiry
We have a third party application running. It shows login dialog when idle for 20 minutes. We need to prevent the application to display login screen.
We do not have any idea how idle state is ...
0
votes
1answer
170 views
linux kernel idle tick eater (or what will be current task_struct when CPU is 0%)
What process will be pointed by "current" pointer in linux kernel, when CPU load is 0% and there isn't any ready-to-run process?
Consider situation without any power-saving.
What is the name of this ...
0
votes
1answer
224 views
Flex VideoDisplay reconnect after idletimeout
I have a VideoDisplay that is able to connect to a source and play. After the connection times out I want the connection to be re-established when my play button is clicked. Right now when I reset ...
0
votes
1answer
133 views
Automatically scroll when mouse is idle
I need to find a way to randomly scroll horizontally and vertically, plus or minus a set number of pixels per second in each dimension, when the mouse has been idle for a set amount of time. Any ideas ...
0
votes
1answer
775 views
how to detect internet idle time in c#
how do i detect internet is being idle ( no download/upload) using c#, and i would like to initiate download in my application when internet is idle.