08-27-2007 05:50 PM
08-27-2007 09:26 PM - edited 08-27-2007 09:26 PM
Try this. It takes a time stamp, breaks it into the component parts, adds the components, then turns it back into a time stamp then string.
Message Edited by Ravens Fan on 08-27-2007 10:26 PM
08-27-2007 11:01 PM
08-28-2007 02:10 AM
08-28-2007 08:40 AM - edited 08-28-2007 08:40 AM
@tst wrote:
You should note that in the past the cluster did not handle overflow (e.g. 64 seconds) other than in the Day of Month element (see here). I haven't checked this in recent versions.
If you want, you can try this as well.
That's interesting. The only thing I looked at for wrap around was for day of the month and it worked fine. I just tried wrapping around on all of them, and found that the wrap around for months did not work. It didn't understand anything greater than 12 months (while all the others seemed to apply the roll over appropriately and the time stamp came out fine.) So it would be necessary in the code that once the clusters are added, to check the number of months to see if it is greater than 12, then and divide by 12. I think I was able to get something to work using the remainder/quotient function. I had to decrement the month by 1, do the breakdown, then increment it by 1. That is because I want my month to be in the range of 1 to 12 (not 0 to 11). See attached.
Message Edited by Ravens Fan on 08-28-2007 09:41 AM
08-28-2007 03:04 PM
08-29-2007 01:38 AM
08-29-2007 01:39 AM
08-29-2007 01:39 AM
08-29-2007 02:28 AM