bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Files > Changing the View in File New

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!

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home
Tips.Net Store

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)