Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
Learn Access Now
Free Printable Forms
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Collapsing and Expanding Subdocuments
If you routinely use several open documents to do you work, you already know that you can change between document windows by choosing the document name from the Window menu. You may not know, however, that there is a shortcut for changing windows. You can cycle through your documents by pressing either Ctrl+F6 or Shift+Ctrl+F6. The difference is that Ctrl+F6 cycles through the list of windows in a forwards direction, while Shift+Ctrl+F6.
If you would rather not take your hands off the mouse, you can create a macro that cycles through the windows. This macro can then be assigned to a button on one of your toolbars. The following macro will cycle forwards through the windows:
Sub ChangeWin()
On Error GoTo ChangeWinErr
Set bb = ActiveWindow.Next
If Windows.Count > 1 Then
bb.Activate
Exit Sub
End If
ChangeWinErr:
Windows(1).Activate
End Sub
Tip #967 applies to Microsoft Word versions: 97 2000 2002 2003
Add a Professional Finishing Touch! Word includes great tools that allow you to add professional-grade finishing touches to your documents. You can add indexes, tables of contents, and other special tables by using the detailed information available in this volume.