Listing BuiltInDocumentProperties without opening workbook

B

Barb Reinhardt

I'm using this to get the custom document properties without opening a file
(and have pulled out a bunch)

dim strProperty as object
dim objDocProperties as Object

Set objDocProperties = CreateObject("DSOFile.OleDocumentProperties")

objDocProperties.Open (myFileName)

for each strProperty in objDocProperties.CustomDocumentProperties

next strProperty

is there someway I can access the builtin properties using a similar syntax.
I can't seem to get it to work.

Thanks,
Barb Reinhardt
 

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