Tagged Questions

6
votes
6answers
1k views

C# For how long was user inactive

Some background: I am writing a application with several forms, etc. Users have to log in in order to use most of the features, and this worked fine until now. However, now, client has requested that ...
4
votes
3answers
687 views

How can a C# Windows Console application tell if it is run interactively

How can a Windows console application written in C# determine whether it is invoked in a non-interactive environment (e.g. from a service or as a scheduled task) or from an environment capable of ...
2
votes
1answer
131 views

How do I communicate with the user in a finite state machine implementation?

Basically I have a custom implemented finite state machine that mostly listens for hardware switch state changes for initiating transitions, but some things need communication with the user... For ...