07-12-2009 05:26 PM
I am trying to update a time array continuously has anyone else done this?
example:
when I hit the submit button I want all the time array's to update the time
right now if I hit the submit button it will add it to the array because of the build array I want it to do this, but I also want it to update all of the indexes with the correct time.
thanks
07-12-2009 05:46 PM
07-12-2009 07:15 PM
where should I put that initialize array at?
thank you,
07-12-2009 08:04 PM
07-13-2009 03:47 PM
Yes I see that now lol I geuss I just don't know what to connect the initialize array can you maybe put an example?
thank you,
07-13-2009 04:04 PM
07-13-2009 05:01 PM
See below. The event is not correct and I only did one of the arrays.
07-13-2009 05:16 PM
07-14-2009 08:03 PM
I am trying to add another function to add time to the second set of arrays so it will update just as the first set of arrays did but when I hit the submit it dose not add the time to it instead it puts a generic date in
exp:
7:00PM 12/31/1903
so I want it to add to the initial time
07-14-2009 08:49 PM
Your initial time record cluster is all zeroes. Basically an invalid date. You are doing some math on that (adding months, days, hours), but that isn't enough to generate a valid date. (What about years? What about minutes and seconds?)
It is really confusing what you are trying to do here. It seems like a lot of crazy and unnecessary date manipulation. Drop some probes or indicators along the different wires you have going through these calculations. You'll probably find more specifically where your calculations are falling apart.