+ Reply to Thread
Results 1 to 7 of 7
  1. #1
    Junior Member
    Using
    Civil 3D 2010
    Join Date
    Dec 2004
    Location
    Michigan
    Posts
    14

    Default Change File Properties

    Registered forum members do not see this ad.

    Anyone know how to change the Author and Company name that shows up on the General tab in the File Properties dialog box?
    It looks like the Author field is tied to my windows username. I'd like it to be my full name.
    The company name shows a company that we once used to be called. We have since merged with another company and the name has changed. I'm guessing this field is tied to the license somehow?

  2. #2
    Quantum Mechanic ReMark's Avatar
    Computer Details
    ReMark's Computer Details
    Operating System:
    Windows 7 Pro 64-bit
    Computer:
    Thinkmate
    Motherboard:
    Intel DX58SO2 LGA1366 X58
    CPU:
    Intel i7-960 Quad-core 3.20GHz 8MB cache
    RAM:
    12GB (3x4GB) PC3-106000 DDR3
    Graphics:
    nVidia Quadro 4000, 2GB GDDR5
    Primary Storage:
    150GB Velocipraptor 10,000 rpm
    Secondary Storage:
    none
    Monitor:
    Dell P24LLH - 24" wide screen LCD
    Discipline
    See details...
    ReMark's Discipline Details
    Occupation
    CAD Draftsman/Designer...chemical manufacturing.
    Discipline
    See details below.
    Details
    I work for a specialty chemical manufacturer. I do a little bit of everything from P&IDs to civil to architectural and structural.
    Using
    AutoCAD 2013
    Join Date
    Nov 2005
    Location
    Norwalk, CT USofA
    Posts
    33,493

    Default

    What OS are you running?
    "I have only come here seeking knowledge. Things they wouldn't teach me of in college." The Police

    Eat brains...gain more knowledge!

  3. #3
    Full Member envisioncad's Avatar
    Computer Details
    envisioncad's Computer Details
    Operating System:
    Windows XP Pro and above
    Computer:
    Dell Laptop Precision
    Using
    Civil 3D 2013
    Join Date
    Jul 2010
    Location
    Madison, WI, United States
    Posts
    54

    Default

    Hi Dugg, you can create a mvba to run on the files.

    Something like:

    Sub PropertiesDGN()



    ActiveDesignFile.Author = "Bob Mecham"
    ActiveDesignFile.Company = "EnvisionCAD"
    ActiveDesignFile.Client = "WisDOT"


    MsgBox ActiveDesignFile.Author



    End Sub

    OR clear any other properties using this code

    Sub clearProperties()

    ActiveDesignFile.Comments = ""

    ActiveDesignFile.Keywords = ""

    ActiveDesignFile.Manager = ""

    ActiveDesignFile.Subject = ""

    ActiveDesignFile.Title = ""

    End Sub

    Once you have the MVBA then you can batch process all the files at once.

    HTH,
    Bob Mecham

  4. #4
    Junior Member
    Using
    Civil 3D 2010
    Join Date
    Dec 2004
    Location
    Michigan
    Posts
    14

    Default

    Quote Originally Posted by ReMark View Post
    What OS are you running?
    I am using the Microsoft Vista operating system. I did change my user account name btw and that didn't change anything if that is where you are headed with your question?

  5. #5
    Junior Member
    Using
    Civil 3D 2010
    Join Date
    Dec 2004
    Location
    Michigan
    Posts
    14

    Default

    Quote Originally Posted by envisioncad View Post
    Hi Dugg, you can create a mvba to run on the files.

    Something like:

    Sub PropertiesDGN()



    ActiveDesignFile.Author = "Bob Mecham"
    ActiveDesignFile.Company = "EnvisionCAD"
    ActiveDesignFile.Client = "WisDOT"


    MsgBox ActiveDesignFile.Author



    End Sub

    OR clear any other properties using this code

    Sub clearProperties()

    ActiveDesignFile.Comments = ""

    ActiveDesignFile.Keywords = ""

    ActiveDesignFile.Manager = ""

    ActiveDesignFile.Subject = ""

    ActiveDesignFile.Title = ""

    End Sub

    Once you have the MVBA then you can batch process all the files at once.

    HTH,
    Bob Mecham
    Thanks Bob. I will use this if I ever need to change existing files. I'm more concerned with the files I create from here on out.
    Can I put this section...

    Code:
    ActiveDesignFile.Author = "Bob Mecham"
    ActiveDesignFile.Company = "EnvisionCAD"
    ActiveDesignFile.Client = "WisDOT"
    in a configuration file somewhere?

  6. #6
    Full Member envisioncad's Avatar
    Computer Details
    envisioncad's Computer Details
    Operating System:
    Windows XP Pro and above
    Computer:
    Dell Laptop Precision
    Using
    Civil 3D 2013
    Join Date
    Jul 2010
    Location
    Madison, WI, United States
    Posts
    54

    Default

    dugg, you are correct the company name is coming from the license server and the username is coming from your pc. There are no variables to help you populate the properties when you create a new file. The only thing I can suggest at this point is batch process the files when you are done.

    Sorry,
    Bob Mecham

  7. #7
    Junior Member
    Using
    Civil 3D 2010
    Join Date
    Dec 2004
    Location
    Michigan
    Posts
    14

    Default

    Registered forum members do not see this ad.

    Thanks for your help on this Bob.

Similar Threads

  1. Change 3d solid properties
    By andremr in forum AutoCAD 3D Modelling & Rendering
    Replies: 1
    Last Post: 18th Jun 2010, 11:02 pm
  2. Change Acad.DWT Properties
    By MR MAN in forum AutoCAD 2D Drafting, Object Properties & Interface
    Replies: 7
    Last Post: 9th Oct 2008, 06:36 am
  3. How do I change the properties of an Xref
    By Calador in forum AutoCAD General
    Replies: 26
    Last Post: 9th Jan 2008, 03:42 pm
  4. Change Properties in 2006
    By hydro in forum AutoCAD Drawing Management & Output
    Replies: 2
    Last Post: 4th Jun 2007, 07:29 pm
  5. Can't change properties of a polygon!?!
    By RedDirt in forum AutoCAD Drawing Management & Output
    Replies: 2
    Last Post: 1st Oct 2006, 09:08 pm

Bookmarks

Posting Permissions

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