How can I obtain the Editing time?
How can I obtain the Editing time?
(OP)
I trying to obtain the editing time of a drawing without open it. We have a drawing database and we want to add de editing time of each.
Thank you
URY
Thank you
URY





RE: How can I obtain the Editing time?
RE: How can I obtain the Editing time?
(setq time (getvar "tdindwg"))
(setq hh (fix (* time 24)))
(setq dd (fix (/ hh 24)))
(setq mm (fix (- (* time 1440)(* hh 60))))
(setq ss (- (* 86400 time)(+ (* hh 3600)(* mm 60))))
dd = days
hh = hours
mm = minutes
ss = seconds