Rtext

Discussion in 'AutoCAD' started by Brent Daley, Oct 11, 2004.

  1. Brent Daley

    Brent Daley Guest

    My Last Saved by information isn't updating, can someone help me with might
    be wrong with that line of text?

    Thanks!

    File Path: $(getvar, "dwgprefix")
    File Name: $(getvar,"dwgname")
    Layout Name: $(getvar,"ctab")
    Last Saved Date and Time: $(edtime, $(getvar, tdupdate),MONTH DD YYYY","
    H:MMam/pm)
    Last Saved Time: $(edtime, $(getvar, tdupdate),H:MMam/pm)
    Drawn By: $(getvar, "loginname")
    Last Save By: $(getprop, LastSavedBy)
    Attached Xrefs: $(xrefs, 4)
    Attached Images: $(images, 2 )

    --
    Brent Daley
    CAD Manager
    RD Engineering, Inc.
    11920 Burt Street, Suite 180
    Omaha, NE 68154

    Phone: 402.505.4355
    Cell: 402.981.3713
    Fax: 402.505.4432
    Email:
     
    Brent Daley, Oct 11, 2004
    #1
  2. LastSavedBy is only updated when acsiui.arx is loaded. This normally happens
    when you use DwgProps. So you can check (arx) to see if it is loaded, and if
    not, load it.

    (cond ((not (member "acsiui.arx" (arx))) (arxload "acsiui")))


    --
    R. Robert Bell


    My Last Saved by information isn't updating, can someone help me with might
    be wrong with that line of text?

    Thanks!

    File Path: $(getvar, "dwgprefix")
    File Name: $(getvar,"dwgname")
    Layout Name: $(getvar,"ctab")
    Last Saved Date and Time: $(edtime, $(getvar, tdupdate),MONTH DD YYYY","
    H:MMam/pm)
    Last Saved Time: $(edtime, $(getvar, tdupdate),H:MMam/pm)
    Drawn By: $(getvar, "loginname")
    Last Save By: $(getprop, LastSavedBy)
    Attached Xrefs: $(xrefs, 4)
    Attached Images: $(images, 2 )

    --
    Brent Daley
    CAD Manager
    RD Engineering, Inc.
    11920 Burt Street, Suite 180
    Omaha, NE 68154

    Phone: 402.505.4355
    Cell: 402.981.3713
    Fax: 402.505.4432
    Email:
     
    R. Robert Bell, Oct 11, 2004
    #2
  3. Brent Daley

    Brent Daley Guest

    Can someone tell me what the line of code would look like if I wanted to add
    one for

    Last Plotted By:

    Thanks!!

    --
    Brent Daley
    CAD Manager
    RD Engineering, Inc.
    11920 Burt Street, Suite 180
    Omaha, NE 68154

    Phone: 402.505.4355
    Cell: 402.981.3713
    Fax: 402.505.4432
    Email:
     
    Brent Daley, Oct 12, 2004
    #3
  4. It won't be a "line of code". That data isn't stored in the drawing
    normally, so you would need to react to the plot command to store the
    username at plot completion to a custom property (or other storage
    mechanism) for later retrieval; i.e. is it worth it?

    --
    R. Robert Bell


    Can someone tell me what the line of code would look like if I wanted to add
    one for

    Last Plotted By:

    Thanks!!

    --
    Brent Daley
    CAD Manager
    RD Engineering, Inc.
    11920 Burt Street, Suite 180
    Omaha, NE 68154

    Phone: 402.505.4355
    Cell: 402.981.3713
    Fax: 402.505.4432
    Email:
     
    R. Robert Bell, Oct 13, 2004
    #4
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.