HEELPBOOK - Word - VBA - Open Document in Full-Screen Mode ###################################### When you want a specific document to open in full-screen mode, you put this macro in the document_open event, and voila! ######## Code: Private Sub Document_Open() ActiveWindow.View.FullScreen = Not ActiveWindow.View.FullScreen End Sub ########## How to use: * Copy the code above. * Open the document. * Hit Alt+F11 to open the Visual Basic Editor (VBE). * On the left, double-click the document you opened. * Underneath it, double-click "ThisDocument". * Paste the code into the window that appears at right. * Hit the Save diskette on the toolbar and close the VBE. ########## Test the code: * Save and close the document. * Open it again; it should open full-screen. ############ ARTICLE INFO ############# Article Month: July Article Date: 05/07/2012 Permalink: http://heelpbook.altervista.org/2012/word-vba-open-document-in-full-screen-mode/ Source: http://www.vbaexpress.com/kb/getarticle.php?kb_id=210 Language: English View more articles on: http://www.heelpbook.net/ Follow us on Facebook: http://it-it.facebook.com/pages/HeelpBook/100790870008832 Follow us on Twitter: https://twitter.com/#!/HeelpBook Follow us on RSS Feed: http://feeds.feedburner.com/Heelpbook Follow us on Delicious: http://delicious.com/heelpbook