W
Wayne Erfling
How do I create an "Autoexec" macro in Visio, to be run whenever Visio
starts (not just when I open a particular document)?
Visio has the same "Reviewing Toolbar" problem as the other MS Office
applications (Reviewing toolbar displays whenever you start up MS Word or
Excel or Visio, no matter how many times you turn it off).
This works in MS Word:
'Add the following routine to the normal.dot file
Sub AutoExec()
'
' AutoExec Macro
' Macro created 4/21/2005 by Wayne Erfling
'
With Application.CommandBars("Reviewing")
.Visible = False
End With
End Sub
....and this works in Visio, but I don't know how to make it run when I start Visio.
Do I save a Visio document to the "startup" folder? Is there an equivalent of the "normal.dot" file is in Visio?
Or a .vsi file? I've found references to .vsi but no detailed information.
starts (not just when I open a particular document)?
Visio has the same "Reviewing Toolbar" problem as the other MS Office
applications (Reviewing toolbar displays whenever you start up MS Word or
Excel or Visio, no matter how many times you turn it off).
This works in MS Word:
'Add the following routine to the normal.dot file
Sub AutoExec()
'
' AutoExec Macro
' Macro created 4/21/2005 by Wayne Erfling
'
With Application.CommandBars("Reviewing")
.Visible = False
End With
End Sub
....and this works in Visio, but I don't know how to make it run when I start Visio.
Do I save a Visio document to the "startup" folder? Is there an equivalent of the "normal.dot" file is in Visio?
Or a .vsi file? I've found references to .vsi but no detailed information.