I am using a timer on my form, set to an interval of 120000 so it will get data from the National Treasury every two minutes.
Question: How can I show how much time is left before the timers, timer event fires? I was thinking about using a second timer that checks timer1 every second. My problem with that is that I can not see where it shows how many milliseconds are left before the timer1 fires?
I know once I can get the time that is left before the timer fires and just stick it in a
thisform.lblTimeLeftToFire.caption = {time left to fire}
I know somebody has had to do this before, it seems like it would be common for something using a timer.
I know I can create a property and store the time that it started then bounce off that but it there a way to do it right off the timer?
-E
Question: How can I show how much time is left before the timers, timer event fires? I was thinking about using a second timer that checks timer1 every second. My problem with that is that I can not see where it shows how many milliseconds are left before the timer1 fires?
I know once I can get the time that is left before the timer fires and just stick it in a
thisform.lblTimeLeftToFire.caption = {time left to fire}
I know somebody has had to do this before, it seems like it would be common for something using a timer.
I know I can create a property and store the time that it started then bounce off that but it there a way to do it right off the timer?
-E