How to view properties of an OLE Object

M

Mike S

I have an OLE object in a Visio file. Appears to have been created with
another drawing program, but I can't tell what. When I right click the
object, it shows Unknown Object. Is there any way to determine what type of
object it is so I can find what software to open it with?
 
J

JuneTheSecond

oleobject.ForeignType and oleobject.ProgID properties might be any help.
but types that visio knows are limited as is shown in help document.

For Each obj In ActivePage.OLEObjects
Debug.Print Hex(obj.ForeignType) & " " & obj.ProgID
Next
 

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