I'm using Word XP.
I want to have it open to my own template "MY TEMPLATE" -- not the
Normal template.
I also want to change the keyboard shortcut ^N so that MY TEMPLATE
opens (not the Normal temlate). Is this possible?
Lady Dungeness
Out of Danger until September
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
According to
http://support.microsoft.com/?kbid=210565 ("How to use startup
command line switches") you can use the /t switch on the command line of the
Run command box or a desktop shortcut to open Word with a document based on
a template other than Normal.dot. The /t should be followed by the name of
the template to use. By experiment, I'm finding that Word isn't happy with
just the template's filename, even if the template is stored in the User
Templates folder. Including the full path to the file, with the whole path
and name enclosed in double quotes, does work. Look at the "Method notes"
section of the article for an example.
Changing the Ctrl+N shortcut is a little more complex, because you need a
macro. There are two ways to go about this:
1. You can redefine the FileNewDefault command (which is what Ctrl+N runs)
by giving the macro that name:
Sub FileNewDefault()
Documents.Add Template:="alternative.dot"
End Sub
The drawback is that if you want to base a document on Normal.dot, you now
have to go to the File > New dialog and select the Blank Document icon.
2. You can give the macro a different name that doesn't correspond to any
built-in command:
Sub FileNewAlternative()
Documents.Add Template:="alternative.dot"
End Sub
Then assign a different shortcut to the FileNewDefault command and assign
Ctrl+N to your macro. That way you have shortcuts to both templates.
See
http://www.gmayor.com/installing_macro.htm if needed.
--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.