Hi!
I am trying to do my own clock using a timer, it was my first option, but now I see that timer stop when you have dialog, pause,etc
"A Timer object generates ticks events at specified intervals. Using a timer is a good alternative to a
long loop, as it allows the UI thread to handle other events and messages.
Note that the timer events will not fire while the UI thread is busy running other code (unless you
call DoEvents keyword).
Timer events will not fire when the activity is paused, or if a blocking dialog (like Msgbox) is
visible.
It is also important to disable the timer when the activity is pausing and then enable it when it
resumes. This will save CPU and battery."
I need something like a timer but never stop just when finish the application always must be running.
I need a clock do not depend of my tablet so I tried to do mine
There is something like that ?
TIA
I am trying to do my own clock using a timer, it was my first option, but now I see that timer stop when you have dialog, pause,etc
"A Timer object generates ticks events at specified intervals. Using a timer is a good alternative to a
long loop, as it allows the UI thread to handle other events and messages.
Note that the timer events will not fire while the UI thread is busy running other code (unless you
call DoEvents keyword).
Timer events will not fire when the activity is paused, or if a blocking dialog (like Msgbox) is
visible.
It is also important to disable the timer when the activity is pausing and then enable it when it
resumes. This will save CPU and battery."
I need something like a timer but never stop just when finish the application always must be running.
I need a clock do not depend of my tablet so I tried to do mine
There is something like that ?
TIA