My question is when the timer is start ticking.
Let's take for example, timer that configured to tick every second and I start my program on hh:mm:ss:ms = 22:40:34.50
. The tick will start on round sec? Start on 17:40:35.00
or it's start on the exact time? So the first tick will be on 17:40:35.50
and the next one on 17:40:36.50
.
What actually I'm trying to solve is I want to make function to work on 05:00:00.00 AM
every day but only for one time. I've build a working hour system and sometimes workers forget to "close" their shift, so on 5am I want to check who didn't close, and make a error about it. How can you think I can solve issue?