×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

How can I obtain the Editing time?

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

RE: How can I obtain the Editing time?

Maybe by redefining the command "_save" to include a call to a function (VBA) that cumulatively writes the editing time into a txt file.

RE: How can I obtain the Editing time?

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

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources