Visio Full Screen View

R

Ron Whitson

Is there a method to force Full Screen view upon opening a
Visio file without the user having to press the F5 key or
click the Full Screen option in the View menu?
 
C

Chris Roth

Paste this code into the VBA project of any documents that you want to open
in full screen:

Private Sub Document_DocumentOpened(ByVal doc As IVDocument)
Visio.Application.DoCmd (Visio.VisUICmds.visCmdFullScreenMode)
End Sub


To get to VBA, press Alt + F11.

You may get a "macro warning" when you double-click the file, just click
"Enable Macros".

--

Hope this helps,

Chris Roth
Visio MVP

(e-mail address removed)

Need stencils or ideas? http://www.mvps.org/visio/3rdparty.htm
Need VBA examples? http://www.mvps.org/visio/VBA.htm
Common Visio Questions http://www.mvps.org/visio/common_questions.htm
 

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