WinWord 2.0b: Macro For Changing To Full Screen ModeLast reviewed: July 30, 1997Article ID: Q89647 |
The information in this article applies to:
SUMMARYIn Microsoft Word for Windows, there is no internal command for the newly-implemented Full Screen Mode. This article contains a macro you can run to switch to Full Screen editing mode.
MORE INFORMATIONYou may want to assign this macro to a toolbar button, a keyboard combination, or to a menu. See pages 767-768 in the "Microsoft Word for Windows User's Guide" for more information. In a macro editing window, type the following macro text. The suggested name for this macro is "FullScreen" (without the quotation marks).
Sub MAINToolsOptionsView .FullScreen = 1 End SubThe following macro can be used to toggle the Full Screen option in the Options dialog (if Full Screen is active, this macro disables the Full Screen option, and vice versa):
Sub MAINDim dlg As ToolsOptionsView GetCurValues dlg dlg.Fullscreen = Abs(dlg.fullscreen -1) 'reverse the current valueToolsOptionsView dlg End Sub REFERENCES"Microsoft Word for Windows User's Guide," version 2.0, pages 767-768, 784-786 Kbcategory: kbusage kbmacro KBSubcategory: |
Additional query words: winword2 2.0b feature added upgrade view
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |