Bear minimum install to enable VB.exe automation of Visio

J

Junkstyle

This is the only code I need to run:

Dim ovApp As Visio.InvisibleApp
Dim ovDoc As Visio.Document
Set ovApp = CreateObject("Visio.InvisibleApp")
Set ovDoc = ovApp.Documents.Open("D:\tmp\Drawing1.svg")
ovDoc.SaveAs "D:\tmp\Drawing1.vsd"
ovDoc.Close
ovApp.Quit

what would be the bear minimal install of Visio to enable this automation.
Visio doesn't need to be running or usable. I just run a VB.exe to do this.

Thanks.
 
C

Chris Roth [ Visio MVP ]

Install Visio without any of the content (ie shapes and templates and
add-ons)


--

Hope this helps,

Chris Roth
Visio MVP
 

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