How do I add a template icon to tool bar?

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

Guest

I need to be able to click an icon and my template start running. How do I
do that?
 
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

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

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.

Ask a Question

Back
Top