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.
 

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. After that, you can post your question and our members will help you out.

Ask a Question

Top