View Single Post
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default Word Templates / Buttons

"Stefan Blom" wrote in message
...
You can use the following macro:

Sub CreateDocFromTemplate()
Documents.Add "tryout.dot"
End Sub

Of course "tryout.dot" is just an example; you should use an existing
template name. No path is required assuming that the template is saved in
the templates folder of your Word installation.

You can then attach the template to a toolbar button as explained at
http://www.gmayor.com/installing_macro.htm.


Corrected version: you can then attach the *macro* to a toolbar button.

--
Stefan Blom
Microsoft Word MVP










--
Stefan Blom
Microsoft Word MVP


"Andrew-9558" wrote in message
...
I have created several word templates and am looking to now create new
toolbars and buttons to click on to open the new template...any help
gratefully appreciated.