0
votes
1answer
156 views
Can Visio’s macro warning prompt be surpressed when automating in code?
I'm automating Visio 2003 from a VB.NET app. My code looks like this (with the uninteresting stuff removed):
Dim objApp As New Microsoft.Office.Interop.Visio.InvisibleApp
objApp.Se …
2
votes
Can Visio’s macro warning prompt be surpressed when automating in code?
There is an OpenEx method that works just like Open but it accepts flags. One of those flags is visOpenMacrosDisabled (&H80).
There are also some other handy flags in there like visO …
