Page 1 of 1

Timeout condition..

Posted: Tue Nov 18, 2014 9:39 pm
by tasdvl9
Hi All,

I'm looking to implement a timeout condition when my app has no activity.
In other words, if the user isn't clicking on controls or using the app I'd like a timeout in place so they can log back in after the timeout limit has expired.

Any thoughts on this?

Thanks.

Re: Timeout condition..

Posted: Tue Nov 18, 2014 10:29 pm
by jmburnod
Hi tasdvl,

You have to write a "send in time" loop which check the value of a variable.
When the mouse move you set this variable to the seconds.
You have also to define the latence time you want
When the value of the variable + the latence time > the seconds you log the user back
Best regards
Jean-Marc

Re: Timeout condition..

Posted: Tue Nov 18, 2014 10:36 pm
by tasdvl9
Thanks so Much!

I appreciate the fast response.