Here is the code that I have so far to show word document property in a message box
Sub DocumentProperties()
Dim Output As String
Dim Prop As DocumentProperty
For Each Prop In ActiveDocument.BuiltInDocumentProperties
Output = Output + Prop.Name + " = " + Str(Prop.Value) + vbCrLf
Next
MsgBox...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.