PDA

View Full Version : vba code needed to extract ole object of type "Package" from word doc



jimcyclops
07-06-2012, 11:12 PM
Title says it all. I have a word doc with an embedded ole object of type Package. I can access the object using

Dim fso As Object
Set fso = Me.Application.ActiveDocument.InlineShapes(1).OLEFormat.Object

but I get an error, "class does not support automation or does not support expected interface"

anyway to write to extract all ole objects in word doc?