I read the info you referred me to. It tells me to copy the macro code into
a template. How do I do that?
- Show quoted text -
If you want to get into Word macros to any depth, you really need to
get familiar with the Word FAQ site. That's the best thing I ever
did! That, and learn to do Advanced searches with Google Groups.
http://word.mvps.org/FAQs/MacrosVBA/index.htm
http://word.mvps.org/FAQs/MacrosVBA/CreateAMacro.htm
http://word.mvps.org/FAQs/MacrosVBA/OrganizeMacros.htm
You'll need to have open both the template where your macro is
currently stored (probably Normal.dot) and the template you want to
put it into. Do not double-click these templates to open them - the
default behavior on double-clicking a template is to ceate a new
document based on that template. Instead, find the folder that
contains the template, right-click the icon and select Open.
THen hold ALT and key F11. You are now in the Visual Basic Editor.
You should see an Explorer window on the left that shows all your
projects. On the menu, Tools >> Macros. Highlight your macro in the
list, then click Edit. Select all the macro code from Sub at the top
to End Sub at the bottom and Copy.
Find your new template on the left and click to highlight. Menu -
Insert >> Module. Paste all your code into the new blank module.
Save and close.
Ed