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:
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Word 2010 macro not showing on Add-ins tab
Useful,
Is it a Sub or a Function? Functions will not show. HTH :cheers:
Useful,
Could you possibly post a copy of the template? :cheers:
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.
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
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
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.
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.