Extract MS Project file from OLE object

  • Thread starter Thread starter Willem
  • Start date Start date
W

Willem

I have been using Stephen Lebans's GetContentsStream (www.lebans.com) to
extract files from OLE objects, but it does not seem to work for Microsoft
Project files (.mpp). I think I can get it to work if I know the stream name
of a MS project file. Can anybody help?
For:
word it is "WordDocument"
Excel is "WorkBook"
Powerpoint is "PowerPoint Document"
MSProject is ???
 
Hello Willem,

I'm not at all familiar with Leban's code but I was able to find
what I think you are referring to in his module
"ModGetContentsStream" in his db ExtractInventoryOLEver75.mdb I'm
assuming the Access newsgroup sent you here?

Have you tried something along the lines of
Case "Project
' MS Project file
sExt = "mpp"
sStreamName = "Project"
FileExtension = "mpp"

This is just a straight guess :-)

Good luck.

Julie
 
Back
Top