A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Page Layout
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

'Full screen' mode in Word that maintains the window size, but el.



 
 
Thread Tools Display Modes
  #1  
Old December 1st, 2004, 06:01 PM
Dan Sullivan
external usenet poster
 
Posts: n/a
Default 'Full screen' mode in Word that maintains the window size, but el.

I like full screen mode, but the same idea would be cool if I could have it
just eliminate everything except the text area (menu, toolbars, status bar,
etc.) BUT keep the window size that I am currently working in. Handy when
writing documentation for software that is running in another window and I
want to maximize my 'input area' but not go full screen.
  #2  
Old December 3rd, 2004, 01:51 PM
Cindy M -WordMVP-
external usenet poster
 
Posts: n/a
Default

Hi =?Utf-8?B?RGFuIFN1bGxpdmFu?=,

I like full screen mode, but the same idea would be cool if I could have it
just eliminate everything except the text area (menu, toolbars, status bar,
etc.) BUT keep the window size that I am currently working in. Handy when
writing documentation for software that is running in another window and I
want to maximize my 'input area' but not go full screen.

In that case, you could perhaps use a macro that hides the status bar and
loops through the toolbars collection and sets all toolbars' .Visible property
to false. You'd need another macro to turn the toolbars back on, of course.
Here's a framework to get you going:

Sub MyFullScreenMode()
Dim cb as CommandBar

Set CustomizationContext = ActiveDocument
For each cb in CommandBars
cb.Visible = False
Next
Application.DisplayStatusBar = false

End Sub

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 8 2004)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or
reply in the newsgroup and not by e-mail :-)

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Continuous breaks convert to next page breaks Jennifer Hunt General Discussion 2 December 30th, 2004 05:45 PM
How to change merge forms from Word Perfect to Microsoft Word Charles Kenyon General Discussion 1 December 30th, 2004 03:35 PM
Creating a default window size for webpages linked to Word document KAR New Users 1 May 4th, 2004 06:53 PM


All times are GMT +1. The time now is 06:48 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.