How do I prevent Word from redisplaying multiple minimized open documents when opening a new document?

Anonymous
2010-04-01T09:17:27+00:00

When I have multiple Word documents open, but minimized and I open an already created document, all of the minimized documents will get redisplayed (ie. maximized) to the screen.  Additionally, I believe the last edited document will be displayed on top and its listing on the start/task bar will begin flashing and it will not turn off until the flashing listing is clicked.  I then have to reminimize all of the documents and navigate to the document that I originally wanted open.

As a user, I would want all of the open minimized documents to remain minimized and the document that I'm opening to be presented without having to click anything on the start/task bar.

dmurf

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Anonymous
2012-08-11T17:55:48+00:00

Try this:  Right-click on the lower taskbar (the dark band that runs across the bottom of your screen), in an empty space, not on an icon.  You should see a small window open up that gives you different options for displaying the documents you are working on.  Cascade windows is sometimes helpful if you are going back and forth between different documents.  You can drag the edges of a document so that you can see two documents at the same time.  You just need to click on one to bring it more to the  front.  Stacked windows is another option.  Then you will see all of the documents at once.  That may be what you have had selected.  Side-by-side windows is another.  Experiment with these options.  It may help you.

Was this answer helpful?

20+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2010-04-01T21:52:51+00:00

A newly opened document will not cause other minimized or open Word documents to come to the front. But the newly opened document will not come to the front itself, it launches as an open window. 

The easiest way to eliminate that is by using keyboard shortcuts:

To minimize all the windows and get back to the desktop:        Windows + D

To open a new word blank document                              :       CTRL + N

To open a word document from a location                       :       CTRL + O        

There's an option under Word Options / Advanced / Display, named Show all windows in the taskbar. Turning it off hides all Word icons in the taskbar but one. This way the described behavior disappears but at the same time goes the ease of restoring a minimized document.

Was this answer helpful?

10+ people found this answer helpful.
0 comments No comments

208 additional answers

Sort by: Oldest
  1. Anonymous
    2012-10-22T02:30:41+00:00

    Work-arounds

    For problems with minimized windows that maximize when a new document is opened:

    Solution #1: A macro can be created, which will close the current window and minimize all other open Word windows. After completing work on the new document -- make sure you save it first -- it will close by clicking a single quick access button and all other Word documents will be minimized.

    The macro will ultimately appear as:

    Sub FileCloseMinWord()

    '

    ' FileCloseMinWord Macro

    ' Closes current file then minimizes other Word windows

    '

        ActiveDocument.Close

        Application.WindowState = wdWindowStateMinimize

    End Sub

    For those not familiar with writing macros, below are instructions for recording a Macro, rather than using Visual Basic editing commands: [These instructions are for Word 2010 in Windows 7.]

    Open a blank Word document

    Click View tab

    Click arrow under Macros (View Macros)

    Click Record Macro

    Enter in Macro name: FileCloseMinWord

    Entry in [Store Macro in:] should read: All Documents

    (Normal.dotm) for Macro to be available in all Word

    documents

    Enter in [Description:] Closes current file then minimizes

    other Word windows

    Under [Assign macro to] click [Button]

    Choose Normal.NewMacros.FileCloseMinWord in left column

    Click Add

    Click Modify

    Choose a button icon and modify the display name to

    FileCloseMinWord

    Click OK

    Click OK in Word Options window

    Click arrow under Macros, then click: Pause recording

    (The next steps will add a button for minimizing Word

    windows to the quick access toolbar in the upper left of

    Word, which will make the command easier to include in a

    macro; the button can be deleted later, if you wish, by

    right-clicking it and selecting delete).

    Click File, Options, then in left margin Quick Access

    Toolbar

    In left column, under [Choose Commands from:], click down

    arrow, then All Commands

    In left column, move slider down and choose Minimize All

    Then click Add button

    Click OK

    Under View, Click arrow under Macros, then Resume Recorder

    (you're now recording the text of the macro by entering

    commands)

    Under File, click close

    Then click the button just created for minimizing word

    windows (the window you're working in will minimize).

    Select the window from the taskbar at bottom to maximize it

    Click View, arrow under Macros, then Stop Recording

    Click arrow under Macros, then View Macros

    Select FileCloseMinWord

    Click Edit

    Select the line from the macro text:

    Application.WindowState = wdWindowStateNormal

    Right click and select Cut (this deletes the command to

    maximize the windows)

    The Macro will now read as follows:

    Sub FileCloseMinWord()

    '

    ' FileCloseMinWord Macro

    ' Closes current file then minimizes other Word windows

    '

        ActiveDocument.Close

        Application.WindowState = wdWindowStateMinimize

    End Sub

    Under File, select Save Normal

    Under File, select Close and return to Microsoft Word

    Solution #2: Alternatively, a new button can be added to the quick access toolbar (at the top left of the Word window) to minimize all documents -- then choose from the taskbar (at bottom of desktop) to maximize only the desired document.

    The creation of this quick access button is described above in the section on creating a Macro.

    Solution #1 should work for those whose last document maximizes when a new document is opened.  Solution #2 should work for those who have all documents maximize when a new document is opened.

    Hope this helps.

    Was this answer helpful?

    0 comments No comments
  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  3. Anonymous
    2012-10-22T03:56:32+00:00

    Steve, I have tried re-creating the problem you have described and have not succeeded.  I have Word 2010.  May I ask you to clarify something?  You wrote, "I open a new doc and the minimized doc restores behind the new doc on the desktop."  When you say, "I open a new doc[ument]," I assume you mean that you created a new, blank Word document and began work on it.  Is that right?  If I interpreted what you said correctly, may I ask you how you opened a new, blank Word document if all your open Word documents were minimized on the Taskbar?   It probably sounds like a silly question, but if you could answer that question, it may help me to find an answer to the problem.

    Yes, absolutely be happy to be more specific.

    If I have one or more Word docs open but minimized to the task bar, I can successfully open a new document without the minimized documents opening (restoring technically speaking).  If however, under the same scenario, I double click on an existing document in a folder somewhere, that is when all minimized documents open (restore) back to the desktop but beneath the newly opened document.

    I hope this is more clear.

    I'm running WinXP Pro SP3 with Office 2007.

    Was this answer helpful?

    0 comments No comments