Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to automatically open in full screen mode?

Status
Not open for further replies.
Dec 7, 2002
1
US
Hello,

I'm using Visio 2002, and I'd like to know how to get files to automatically open in full screen mode. Right now they only open in regular mode.

Background info:
I have a bunch of files that are hyperlinked to each other and viewing them in full screen mode looks much better. The only problem is, when I click on a link that takes me to another file, that file opens up in regular mode. Thus, I figured that if I can get the file to automatically open up in full screen mode, my problems would be solved.

Thanks in advance
-Woodpecker
 
Hello Woodpecker!
This code in ThisDocument code module will do the trick:

Private Sub Document_DocumentOpened(ByVal doc As IVDocument)
ActiveWindow.WindowState = visWSMaximized
End Sub

Check out
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top