Your best bet is to add the the FileNewDialog command from the all commands
section of tools > customize to the toolbar, which will allow you to select
from all your templates
or
save the following macro which will intercept the default file > new command
to display the same dialog
Sub FileNew()
Dialogs(wdDialogFileNew).Show
End Sub
or
for a single template add a macro in the following format (addressed to the
template in question) to the toolbar
Sub myLetter()
Documents.Add "D:\Word Templates\Letter Heads\Letter.dot"
End Sub
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.