• Word 2010 macro not showing on Add-ins tab

    Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Word 2010 macro not showing on Add-ins tab

    Author
    Topic
    #500164

    This is probably a silly question, but I can’t see why one of the three macros in a template does not display as a Toolbar Command on the Add-ins tab along with the other two.

    I would be very grateful for your help.

    Regards
    useful:confused:

    Viewing 9 reply threads
    Author
    Replies
    • #1506825

      Useful,

      Is it a Sub or a Function? Functions will not show. HTH :cheers:

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

      • #1506827

        Thanks for your response RetiredGeek, glad you are still providing your valuable assistance!

        This macro is a Sub, just like the other two macros that do appear on the Add-ins tab.

        Regards
        useful

    • #1506889

      Useful,

      Could you possibly post a copy of the template? :cheers:

      May the Forces of good computing be with you!

      RG

      PowerShell & VBA Rule!
      Computer Specs

      • #1507048

        Hi RetiredGeek, thank you for the follow-up.

        I forgot to elaborate that I created this template years ago and since converted to Word 2010 and expected to see the new macro I created on the Add-ins tab and it wasn’t there.

        The template is attached.

        Thank you in advance.

        Regards
        useful

    • #1507050

      Macros don’t appear in add-ins automatically. The old macros were probably added as buttons on the toolbar on a Word 2003 (or earlier) machine. When such a template is opened in Word 2007+ those buttons appear on the Addins tab.

      The easiest way to add the new button is to take your template back to a Word 2003 machine and add the button to the toolbar.

      Failing that, you could use a macro to create the button – see http://stackoverflow.com/questions/593117/how-to-programmatically-add-a-toolbar-button-and-onclick-handler-to-excel for an example of the code that could be used. You should be able to use that code with only a single modification to specify your macro name.

      The ‘modern’ way of putting buttons onto the ribbon is far more complicated than the old way.

    • #1507088

      Thank you for the explanation Andrew – so that’s why the macro is not on the Add-ins tab!

      Unfortunately for me, I can’t really write VBA code, I just recorded those macros, so as a result I don’t really know what to do with the code you so kindly pointed me to.

      All I want to do is to add the new macro to the Add-ins tab, with an icon, just like the other two macros already there. I don’t really want to add another Toolbar, nor do I have a machine that is running Word 2002 any longer.

      In that case, which part of the code do I use?

      Thank you in advance.

      Regards
      useful

    • #1507279

      OK, the following modified extract is all you need. Paste the code into one of your template’s modules and then run the macro called AddThisButton

      Code:
      Public Sub AddThisButton()
        AddAnyButton "Page2", "Run the Page2 macro", 526, "Page2"
      End Sub
      
      Private Function AddAnyButton(caption As String, tooltip As String, faceId As Long, methodName As String)
        Dim Btn As CommandBarButton
        Set Btn = Application.CommandBars(1).Controls.Add
        With Btn
          .Style = msoButtonIcon
          .faceId = faceId ' choose from a world of possible images in Excel: see http://www.ozgrid.com/forum/showthread/?t=39992 '
          .OnAction = methodName
          .TooltipText = tooltip
        End With
      End Function

      Note that your macro’s result depends heavily on where the cursor is when the macro is run. It would be greatly improved if you can recreate the macro so it is less dependent on cursor location.

    • #1507281

      Thank you Andrew.

      I will try this code in the morning, although I don’t pretend to understand what you mean by ‘recreate the macro so it is less dependent on cursor location’.

      Regards
      useful

    • #1507361

      Hi Andrew

      I have tested it and it works fine!

      Thank you again.

      Regards
      useful

    • #1507362

      Hi Andrew

      I forgot to ask you, could you please tell me where I can find a list of the icons, one of which, 526, you inserted into the code.

      Thank you.

      Regards
      useful

    • #1507644

      Read back through the code – the answer is there.

      The Ozgrid thread has two sources. One requires you to join Ozgrid, the other is a download from Microsoft.

    • #1507648

      Thank you again Andrew.

      Regards
      useful ๐Ÿ™‚

    Viewing 9 reply threads
    Reply To: Word 2010 macro not showing on Add-ins tab

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: