Page 1 of 2 12 LastLast
Results 1 to 10 of 18

Thread: Time Tracker in real time

  1. #1
    Member
    Join Date
    2006-08
    Location
    Eagle Mountain, UT
    Posts
    4
    Login to Give a bone
    0

    Default Time Tracker in real time

    Hi Everyone,
    I'm using Acad 2007 with Windows XP
    I'm looking for a lisp routine that will track current time on in a
    drawing. I know AutoCAD has the "TIME" command, but my boss wants it
    to be able to display a running time in the tray with the snap and all
    those other toggle switches. If possible he would like to be able to
    click on the time displayed in the tray to turn it on or off when you
    leave or return.
    Has anyone seen anything like this?

    I've tried columbus and it wasn't right for what I need. Chronos seemed like it could work, but it's external and my boss wants it to be encorporated into Autocad like I described.

    Thanks,

    Joe

  2. #2
    I could stop if I wanted to
    Join Date
    2001-10
    Location
    Defragging the internets.
    Posts
    350
    Login to Give a bone
    0

    Default Re: Time Tracker in real time

    Someone posted a link to this one in one of the threads:
    http://www.bitcomputing.com

    Chris
    Last edited by framedNlv; 2020-03-02 at 03:02 PM.

  3. #3
    Member
    Join Date
    2006-08
    Location
    Eagle Mountain, UT
    Posts
    4
    Login to Give a bone
    0

    Default Re: Time Tracker in real time

    Thanks for the reply. I tried it, but that time tracker tracks all programs that are open. I need one that will only track AutoCAD. So far the best one I've found is Chronos. It does a good job, but I need one that is integrated into AutoCAD.

    Joe

  4. #4
    AUGI Addict
    Join Date
    2005-08
    Posts
    1,043
    Login to Give a bone
    0

    Default Re: Time Tracker in real time

    You might be able to do one in a more powerful language than Lisp, so you might have to hire someone to do it for you.

    I think it could be done in .Net, but that is just a guess.

  5. #5
    Certifiable AUGI Addict robert.1.hall72202's Avatar
    Join Date
    2004-07
    Location
    Detroit Michigan
    Posts
    2,508
    Login to Give a bone
    0

    Default Re: Time Tracker in real time

    It would be nice if there was a timer that stopped the clock after 2 minutes of
    not doing anything on the computer. It could also restart once the user starts
    to work on the drawing and log itself when the drawing is closed.

    I might be asking for too much, but it would be nice to have.

  6. #6
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,667
    Login to Give a bone
    0

    Default Re: Time Tracker in real time

    Quote Originally Posted by akamarathonman
    I know AutoCAD has the "TIME" command, but my boss wants it to be able to display a running time in the tray with the snap and all
    those other toggle switches. If possible he would like to be able to click on the time displayed in the tray to turn it on or off when you leave or return.
    Has anyone seen anything like this?
    Sure, go to http://www.manusoft.com/Software/Freebies/Index.stm and look for AcadStatButton.zip under Miscellaneous on the left side. Also check out http://archsymb.com//index.php?optio...d=29&Itemid=52. I played with them a few years back, but Autocad has since added all the switches I need. To get the edit time use the Express Tool EDITTIME with some lisp like:
    Code:
     (DEFUN C:EdTime (/ Julian Day DecHr Hr DecMin Min Sec EdTime)
     (setq Julian (acet-getvar '("BNS_EDITTIME_TOTAL"))
    	   Day (fix Julian)
    	   DecHr (*(- Julian Day)24)
    	   Hr (fix DecHr)
    	   DecMin (*(- DecHr Hr)60)
    	   Min (fix DecMin)
    	   Sec (rtos(*(- DecMin Min)60)2 0)
    	   EdTime (strcat (rtos Day 2 0) " days, " (rtos Hr 2 0) ":" (rtos Min 2 0) ":" Sec " HHMMSS.")
     )
     (prompt EdTime)
     (princ)
    );END EdTime
    Should be doable.

  7. #7
    All AUGI, all the time
    Join Date
    2003-10
    Posts
    706
    Login to Give a bone
    0

    Default Re: Time Tracker in real time

    Doesn't the command "EDITTIME" do all of this? you can set a timeout limit and turn it on and off whenever you want.

  8. #8
    Certifiable AUGI Addict robert.1.hall72202's Avatar
    Join Date
    2004-07
    Location
    Detroit Michigan
    Posts
    2,508
    Login to Give a bone
    0

    Default Re: Time Tracker in real time

    Quote Originally Posted by Coolmo
    Doesn't the command "EDITTIME" do all of this? you can set a timeout limit and turn it on and off whenever you want.
    How do you view the time?
    I see a bunch of settings for edittime, but I do not see where the
    time is kept.

  9. #9
    Certifiable AUGI Addict robert.1.hall72202's Avatar
    Join Date
    2004-07
    Location
    Detroit Michigan
    Posts
    2,508
    Login to Give a bone
    0

    Default Re: Time Tracker in real time

    Quote Originally Posted by Tom Beauford
    Sure, go to http://www.manusoft.com/Software/Freebies/Index.stm and look for AcadStatButton.zip under Miscellaneous on the left side.
    If you read through some of the bug fixes, then you might want to stay away
    from statbutton. Looks like a few bugs were present that crash autocad.
    I have used some of the free downloads from manusoft and have also
    experienced undesired behavior in AutoCad.

  10. #10
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,667
    Login to Give a bone
    0

    Default Re: Time Tracker in real time

    Quote Originally Posted by Robert.Hall
    How do you view the time?
    I see a bunch of settings for edittime, but I do not see where the
    time is kept.
    It's stored in the enviromental variable "BNS_EDITTIME_TOTAL". The routine I posted above provides one access.
    Unfortunatly since "EDITTIME" is an Express Tool and must be turned on to start tracking time it could never be as accurate as management would like. Editing time for blocks and xref's can't be tracked either. This routine will give a rough approximate estimate of editing time which is better than nothing, but not something usefull for billing purposes.

Page 1 of 2 12 LastLast

Similar Threads

  1. Real Time Rendering....
    By aaronrumple in forum Revit - Rendering
    Replies: 26
    Last Post: 2009-09-15, 10:26 PM
  2. Real Time Rendering - is it possible?
    By Steve_Bennett in forum DV - The 3rd Dimension
    Replies: 3
    Last Post: 2009-05-30, 11:11 PM
  3. --- 3D SCANER - REAL TIME
    By cipa11 in forum Revit Architecture - General
    Replies: 1
    Last Post: 2005-12-07, 10:15 PM
  4. Real Time Pan
    By mshimatsu in forum AutoCAD General
    Replies: 6
    Last Post: 2004-12-13, 07:30 PM
  5. Real Time Pa(i)n
    By bcowper in forum AutoCAD General
    Replies: 5
    Last Post: 2004-07-15, 04:07 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •