The Time struct converts ticks to msecs, seconds, minutes and hours.
CTor
Calculate the <b>remaining</b> time.
Hours = Minutes / 60
Minutes = Seconds / 60
Milliseconds = Ticks
Seconds = Milliseconds / 1000
See Implementation
Randy Schuett (rswhite4@googlemail.com)
The Time struct converts ticks to msecs, seconds, minutes and hours.