change Value of a field in the Custom folder of Properties w/ VBA

C

Craig

How do you change the Value of a field in the File.Properties.Custom Box with
VBA? I tried recording the macro and it would not record anytihing.
 
J

Jonathan West

Craig said:
How do you change the Value of a field in the File.Properties.Custom Box
with
VBA? I tried recording the macro and it would not record anytihing.


ActiveDocument.CustomDocumentProperties("My property") = "My value"

Look up the CustomDocumentProperties property of the Document object in the
Help for more information.
 
Top