Jan 18, 2002 #1 ury Electrical Joined Jan 10, 2005 Messages 2 Location IN 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
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
Jan 18, 2002 #2 tigrek Mechanical Joined Sep 23, 2000 Messages 255 Location TR Maybe by redefining the command "_save" to include a call to a function (VBA) that cumulatively writes the editing time into a txt file. Upvote 0 Downvote
Maybe by redefining the command "_save" to include a call to a function (VBA) that cumulatively writes the editing time into a txt file.
Jan 19, 2002 #3 Striker Computer Joined May 23, 2001 Messages 143 Location US will return the editing time of a drawing (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 Upvote 0 Downvote
will return the editing time of a drawing (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