PDA

View Full Version : Ide Apps/Web


rexzooly
02-09-2009, 05:54 PM
Hey all i would like to pick your brains if i could for a wee bit i would like to know if there is way to detect if the program in my system try aka the ams app
can know if its idle and if it is refresh the webobject ever 5 mins but if the app is not idle then it dose not refresh.

Also what do i have to seach for that kool System tray pop up dll the free
one what little limited but kl all the same? as my app is free so i don't
want to be paying out for things for it when the site my drop my app @
any time. :yes thanks all

rexzooly
02-11-2009, 09:35 AM
Hey not sure if that was clear before i will explane again maybe better this time ;) lol


I need away to refresh the webobject every 10 min if the app is idle so the browser and server don't get timed out anyone know of a trick that will do this
but i don't want it to refresh if the program is not idle :huh

thanks

ShadowUK
02-11-2009, 10:47 AM
On Mouse Move, On Key, On blah blah..: Page.StopTimer(); Page.StartTimer(60 * 10);

Then the timer will call refresh when 10 minutes are up, Meaning that as soon as the user does something. The 10 minute timer is reset.

This should work.

rexzooly
02-11-2009, 07:23 PM
On Mouse Move, On Key, On blah blah..: Page.StopTimer(); Page.StartTimer(60 * 10);

Then the timer will call refresh when 10 minutes are up, Meaning that as soon as the user does something. The 10 minute timer is reset.

This should work.

where would the timer start go ?on key and on mouse i know are the timerstops
thanks for the reply:yes