
Tips.Net > WordTips Home > Files > Changing the View in File New
Summary: Using a Word macro to change the view when selecting New from the File menu. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)
When you select New from the File menu, you see the New dialog box. There are three different views in this dialog box, which can be selected by choosing one of the three buttons in the upper-right corner. The default view is the large icons view. For your usage of Word, you may wish a different view to be shown by default. Unfortunately, this is not one of the settings that Word remembers.
You can, however, use a little macro ingenuity to make Word do what you want. If you are using Word 6 or Word 95, choose Macro from the Tools menu. This displays the Macro dialog box. In the Macro Name field, enter the name FileNew (notice there are no spaces in the name). When you do this, Word automatically fills out a description for the macro. This is because FileNew is the name of a built-in command; the one that is initiated when you choose New from the File menu. Word allows you to change what these built-in commands do.
When you click on the Create button, the Macro dialog box disappears and the macro editor is invoked. Notice, however, that the editor already has a macro in it:
Sub FileNew() Dialogs(wdDialogFileNew).Show End Sub
This is the step followed when you choose New from the File menu. If you make changes to this macro, then your modified steps will be followed instead. Change the default code to the following:
Sub FileNew()
Set myDialog = Dialogs(wdDialogFileNew)
myDialog.Update
SendKeys "%3"
Button = myDialog.Show
If Button <> 0 Then
myTemp = myDialog.Template
Documents.Add Template:=myTemp
End If
End Sub
Now close the macro editor. The next time (and every time thereafter) that you choose New from the File menu, the files will be listed using the detail view instead of the large icon view.
Tip #1775 applies to Microsoft Word versions: 97 2000 2002 2003
Step Up and Take Control! Subscribers to WordTips know just how valuable a resource it is. WordTips Premium provides twice the number of exceptional, easy-to-understand tips every week in an ad-free newsletter, as well as substantial discounts on WordTips archives and e-books.
Check out WordTips Premium today!
Learn to use styles and you discover the real power behind Word. Fast, easy, consistent document formatting and updating is within your grasp. (more information...)
Ask a Word Question
Make a Comment
Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips