hi there...
datediff will tell you the diference between 2 dates, but only in 1 format (for example only the diference in seconds...)
but after that you can compute the everything with this algorithm:
result /3600 = hours (always use integer number)
result - (hours*3600) = seconds left
newresult / 60 = minutes
newresult - (minutes*60) = seconds left
HTH
Gonzalo
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from dparsons signature and he Took that from planoie's profile
================================================== =========
My programs achieved a new certification (can you say the same?):
WORKS ON MY MACHINE
http://www.codinghorror.com/blog/archives/000818.html
================================================== =========