Custom Document Properties - Writing Too

D

DMc2004

Hi

How can i write to a custom document property called TimesPrinted. This
document property already exists.

Many thanks

DMc
 
G

Greg Maxey

This example sets the value to 7.

Sub Test()
ActiveDocument.CustomDocumentProperties("TimesPrinted").Value = 7
End Sub
 
Top