There are several other schemes you can try, depending on your favorite
operating method:
- You can put your CD cover templates in a subfolder under the User
Templates folder. That subfolder will appear as a new tab in the File > New
dialog. If you dislike the New Document task pane in Word 2002/2003 as I do,
you can use the Tools > Customize dialog to replace the New button on the
toolbar with the one in the "All Commands" category named FileNewDialog,
which bypasses the task pane and opens the dialog directly (confusingly, its
tooltip says "Other...").
- You can create a series of macros, one per template, like this one
(assuming you placed the templates in a folder "CD covers" under the User
Templates folder):
Public Sub NewCDTemplate1()
Dim TemplatePath As String
TemplatePath = Options.DefaultFilePath(wdUserTemplatesPath)
Documents.Add TemplatePath & "\CD covers\CDTemplate1.dot"
End Sub
Then create a new toolbar and add a button to it for each macro. Click a
button and you'll get a new document based on the template named in the
macro. Or create a new menu or submenu and put items on it to run the
macros. See
http://word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToToolbar.htm.
- You can create a series of shortcut icons on your desktop. In each one,
make the Target box look something like this (depending on the installation
path of your Word program and the path to the User Templates folder),
varying only the name of the template:
"C:\Program Files\Microsoft Office\OFFICE11\WINWORD.EXE" /t"C:\Documents and
Settings\jprok\Application Data\Microsoft\Templates\CD
covers\CDTemplate1.dot"
The /t switch causes Word to start with a new document based on the named
template.