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 » Formatting Long Documents
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Outline View at start: how to preserve levels of expansion



 
 
Thread Tools Display Modes
  #1  
Old March 1st, 2006, 12:38 AM posted to microsoft.public.word.formatting.longdocs
external usenet poster
 
Posts: n/a
Default Outline View at start: how to preserve levels of expansion

First post - apologies if topic covered ....

I have a version of Word on an old computer that opens my documents in
outline view exactly the way they were when I saved and closed them -
with the sections I'm working on expanded like I left them, and the
sections collapsed that I wanted collapsed.

On my new computer, with Word 2003, the document opens each time with
all levels expanded so that I have to go in and expand those sections I
want and get it into the form I like to work with each time I start.
I've checked out the Options box and haven't seen anything that will
help. Maybe someone has an add-in or something that will help or knows
why my documents won't stay the way I leave them?

Thanks so much,

Yours truly from thesis-writing purgatory,
Gayla

  #2  
Old March 1st, 2006, 09:39 AM posted to microsoft.public.word.formatting.longdocs
external usenet poster
 
Posts: n/a
Default Outline View at start: how to preserve levels of expansion

As far as I know, the only way to do this is with a couple of macros
in normal.dot:

Sub AutoOpen()
Dim v As View
Set v = ActiveWindow.View
If v.Type = wdOutlineView Or v.Type = wdMasterView Then
v.ShowHeading 3 'specify the level that you want
End If
End Sub

Sub AutoNew()
Dim v As View
Set v = ActiveWindow.View
If v.Type = wdOutlineView Or v.Type = wdMasterView Then
v.ShowHeading 3 'specify the level that you want
End If
End Sub

Note that the above macros assume that you want to show headings 1-3
in each document saved or created in Outline view. Although you can
edit the code to show more or less levels (change to a number between
1 and 9), it does *not* take care of situations where you want
different settings for different parts of the document. If this is
what you want, you'd better ask in a programming newsgroup instead.

If you need help installing the macros, see
http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"Gayla" wrote in message
oups.com...
First post - apologies if topic covered ....

I have a version of Word on an old computer that opens my documents

in
outline view exactly the way they were when I saved and closed

them -
with the sections I'm working on expanded like I left them, and the
sections collapsed that I wanted collapsed.

On my new computer, with Word 2003, the document opens each time

with
all levels expanded so that I have to go in and expand those

sections I
want and get it into the form I like to work with each time I start.
I've checked out the Options box and haven't seen anything that will
help. Maybe someone has an add-in or something that will help or

knows
why my documents won't stay the way I leave them?

Thanks so much,

Yours truly from thesis-writing purgatory,
Gayla








  #3  
Old March 2nd, 2006, 01:05 PM posted to microsoft.public.word.formatting.longdocs
external usenet poster
 
Posts: n/a
Default Outline View at start: how to preserve levels of expansion

"Stefan Blom" wrote in message
...

Note that the above macros assume that you want to show headings 1-3
in each document saved or created in Outline view.


Clarification: I meant to say, "[...] each document displayed in
Outline view as it is *opened* or created."

--
Stefan Blom
Microsoft Word MVP




 




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
looking for a non-macro way to force Print Layout as the default v Kevin General Discussion 7 February 16th, 2006 03:45 AM
Add outline levels? suska General Discussion 1 June 17th, 2005 11:58 AM
Having expandalble\hideable levels in an outline Dan Irwin Formatting Long Documents 7 June 7th, 2004 12:17 PM
Label Outline View & Print Raymond Sanborn Page Layout 2 June 2nd, 2004 09:47 PM
outline view and moving text groupings around Chip Orange Formatting Long Documents 1 May 17th, 2004 01:21 PM


All times are GMT +1. The time now is 03:00 AM.


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