Consulting

Results 1 to 3 of 3

Thread: Add In for Microsoft Word

  1. #1

    Add In for Microsoft Word

    I have some VBA functions that I would like to share with colleagues but using Microsoft Word 2013 it seems a struggle.
    How do I go about creating an add-in for Word that I can simply give folks? In Excel it's fairly easy but creating the same in Word seems so difficult!

    Thanks

  2. #2
    Copy the macro code to a new document's macro project (by default macros are created in the normal template). Save as a macro enabled template (DOTM format). Distribute the template, which would go in the user's Word startup folder. If the user has not changed the preferred startup folder it can be located (in English language versions of Windows) by typing
    %appdata%\Microsoft\Word\Startup
    in the Windows Explorer Address bar and pressing Enter.
    I usually make a point of adding information this to the text area of the template so that the users can see what to do with it.

    It works even better if you add a ribbon to the add-in template with the commands you want from your add-in. http://gregmaxey.mvps.org/word_tip_p...bbon_main.html
    Graham Mayor - MS MVP (Word) 2002-2019
    Visit my web site for more programming tips and ready made processes
    http://www.gmayor.com

  3. #3
    Quote Originally Posted by gmayor View Post
    Copy the macro code to a new document's macro project (by default macros are created in the normal template). Save as a macro enabled template (DOTM format). Distribute the template, which would go in the user's Word startup folder. If the user has not changed the preferred startup folder it can be located (in English language versions of Windows) by typing
    %appdata%\Microsoft\Word\Startup
    in the Windows Explorer Address bar and pressing Enter.
    I usually make a point of adding information this to the text area of the template so that the users can see what to do with it.

    It works even better if you add a ribbon to the add-in template with the commands you want from your add-in.
    Thank you - it worked like a charm...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •