Thread: [Solved] Color themes
View Single Post
 
Old 11-28-2014, 05:28 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2013
Moderator
 
Join Date: Aug 2011
Posts: 4,036
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

With a bit of VBA, you can do it. As a starting point, you can use the following macro to print (to the Immediate window of the Visual Basic Editor) all main menu commands:

Code:
Sub MyTestMacro()
For Each i In CommandBars.ActiveMenuBar.Controls
Debug.Print i.Caption
Next i
End Sub
Accelerator keys are preceded by an ampersand.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote