john pouls
john pouls

Reputation: 11

Is there a way to retrieve a document properties without dsolfile?

I want to retrieve document properties such as author, last edited by, etc using vbscript.

Is there a way to get the above info without using dsolefile extension ?

Upvotes: 1

Views: 184

Answers (1)

GolezTrol
GolezTrol

Reputation: 116110

Well you could parse the file yourself, but Word documents are assentially structured storage files. You don't need to read them with dsOleFile, because you can treat them as any structured storage file. It is however convenient to use dsOleFile. Why don't you want to use it?

Upvotes: 1

Related Questions