
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
Great Idea! Word is a tool to get what you really want—printed output. This means you need to make sure that Word works as well as possible with your printer, whether it is sitting on your desk or in a room down the hall.
Check out WordTips: Printing and Printers today!
Discover how to use Word's mail merge tool to create your own custom documents in just minutes. Great e-book answers all your questions. (more information...)
Ask a Word Question
Make a Comment
Bugs and Pests Tips
ExcelTips
Family Tips
Health Tips
Home Tips
Organizing Tips
WordTips