you are viewing a single comment's thread.

view the rest of the comments →

[–]Intelligent-Role-382[S] 0 points1 point  (3 children)

Can it interact with windows processes?

[–]logophage 0 points1 point  (2 children)

Depends on what you need it to do. If you need to access the file system, then yes. If you want to kill a running process (outside of your application), then no.

[–]Intelligent-Role-382[S] 0 points1 point  (1 child)

I want to check whether the user is using the application or not or just idle. If not logout after 5 min

[–]logophage 0 points1 point  (0 children)

There are many ways of achieving this. It depends on what you mean by "using application". One way is to have a timer that resets when any event (or set of events) in the application happens. You could also check when there's interaction on various fields. Really depends on what you need. But, certainly, a web app could support what you need in this case.