10-07-2013 10:15 AM
I am not to sure if I implemented this code correctly? from the arrays (day mode and times), I want to corresponding time stamp control with the proper mode of day. For example:
my concern is with my implementation of the compare functions to get any time before 5AM as 'night' time mode....it works up to 5:01 AM for change of day. How can I get this code to change day mode at 5:00 AM ? the other times changes accordingly on their specific times (10:00 AM, 05:00 PM and 09:00 PM)....
Solved! Go to Solution.
10-07-2013 10:17 AM
Put in a first element as 12 midnight and make that a night time mode.
10-07-2013 10:23 AM
10-07-2013 11:01 AM
10-07-2013 11:46 AM
You should build up your lookup array before the loop. There's no need to keep recalculating it.
10-10-2013 07:15 PM
I was doing a little in ranging and a bit of coercing and thought of this thread.
10-10-2013 10:58 PM
@Darin.K wrote:
I was doing a little in ranging and a bit of coercing and thought of this thread.
wow....that is something different, thanks Darin!
10-11-2013 02:57 AM