Here is a different approach. Does it give the properties you want?
Code:
Dim wd As Word.Application
Dim MyRange
Dim prop
Dim Cnt As Integer
Set wd = New Word.Application
wd.Documents.Open FileName:="a:SummaryTest.doc"
Set MyRange = ActiveDocument.Content
MyRange.Collapse Direction:=wdCollapseEnd
For Each prop In ActiveDocument.BuiltInDocumentProperties
With MyRange
On Error Resume Next
MsgBox prop.Name & "= " & prop.Value
End With
Next
wd.Documents.Close
Set wd = Nothing
------------------
Marty