View Single Post
 
Old 02-07-2014, 02:09 PM
ChrisBrewster ChrisBrewster is offline Windows 7 64bit Office 2010 64bit
Advanced Beginner
 
Join Date: Jan 2014
Posts: 36
ChrisBrewster is on a distinguished road
Default

I found the answer to my question. DocProperties are set as follows (notice there are both built-in and custom properties):

Sub SetPropertiesAcme()
With ActiveDocument
.BuiltInDocumentProperties("Company").Value = "Acme"
.CustomDocumentProperties("Product Name").Value = "Star"
.Fields.Update
End With
End Sub
Reply With Quote