open a template as a .doc, via a hyperlink

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I use a hyperlink to open an MS Word template (.dot) as a Word
document (.doc). Each time I try it opens the Template as a template
 
Hi =?Utf-8?B?dmhlYWQ5OQ==?=,
How can I use a hyperlink to open an MS Word template (.dot) as a Word
document (.doc). Each time I try it opens the Template as a template
You cannot. Hyperlinks do only one thing: they open the specified file.

You could use a Macrobutton field (instead of a hyperlink) to provide a
"click-to-create-new-document" facility in your text. Create the macro
(see below) in the document, then use the Insert/Field command to create
the MacroButton field that calls the macro.

Sub CreateNewDoc
Documents.Add "C:\Pathinfo\filename.dot"
End Sub

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 8 2004)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or
reply in the newsgroup and not by e-mail :-)
 
Actually you can. It takes a hyperlink to a shortcut, but it works.
http://addbalance.com/word/templatesmenu.htm#Hyperlinks
http://support.microsoft.com/default.aspx?scid=kb;en-us;278627&FR=1
No macro is required.
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide




--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
 
Back
Top