What OS are you running?
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?
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!
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
Training | Consulting | Programming
www.EnvisionCAD.com
Facebook: http://www.facebook.com/EnvisionCAD
Twitter: http://twitter.com/envisioncad
Youtube: http://www.youtube.com/user/envisioncad
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...
in a configuration file somewhere?Code:ActiveDesignFile.Author = "Bob Mecham" ActiveDesignFile.Company = "EnvisionCAD" ActiveDesignFile.Client = "WisDOT"
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
Training | Consulting | Programming
www.EnvisionCAD.com
Facebook: http://www.facebook.com/EnvisionCAD
Twitter: http://twitter.com/envisioncad
Youtube: http://www.youtube.com/user/envisioncad
Registered forum members do not see this ad.
Thanks for your help on this Bob.
Bookmarks