Repurpose builtin Word commands - access original command within repurposed function
- by Aurril
It is possible to repurpose a Word builtin command in Word 2007 using the customUI.xml file.
Example:
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<commands>
<command idMso="Save" onAction="MySave"/>
</commands>
</customUI>
I then have to define a callback function in VBA…