file properties

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to extract information about the creator of a document and
when the doc was saved and edited beyond the info that is available in the
Summary under the document properties?

I have tried using low-level binary editor but cannot even get all the info
from the Summary…

Any suggestions?

/Adde
 
With VBA you can use the BuiltInDocumentProperties Property........

or, here's a Function I think came from Bob Phillips a while back

'----------------------------------------------------------------
Function DocProps(prop As String)
Application.Volatile
On Error GoTo err_value
DocProps = ActiveWorkbook.BuiltinDocumentProperties _
(prop)
Exit Function
err_value:
DocProps = CVErr(xlErrValue)
End Function
'----------------------------------------------------------------------

hth
Vaya con Dios,
Chuck, CABGx3
 

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

Back
Top