Hi,

I have received an excel file from a collegue with a customUI.xml in it which removes all functionality from the ribbon, including the comaddins.
When we normally - without this customUI.xml in it - click on the office button on the top-left, we have an extra menu called "Save to XXX", which shows us three buttons 3x "Save to XXX As YYY".
Normally this works fine.
But, using the customUI.xml, the whole "Save to XXX" is gone.
I've browsed through the customUI.xml on how to re-enable it, but I don't know how.
I know it's a COMAddin. I just don't know the xml-code to display this menu on the ribbon-officemenu

<!-- Set startFromScratch to true to hide the Ribbon and QAT -->
<ribbon startFromScratch="true">

<!-- startFromScratch="true" hides all of the Ribbon tabs and it hide the QAT. -->
<!-- It also hides most of the commands on the Office Button menu, but for -->
<!-- some reason, it does not hide the 'New', 'Open' and 'Save' commands. -->
<!-- Also it not hides the Contextual tabs on the ribbon, for example the -->
<!-- Format tab that you see when you select a picture on your worksheet. -->
<!-- So if you want to hide them you must use the RibbonX below: -->

<officeMenu>
<button idMso="FileNew" visible="false" />
<button idMso="FileOpen" visible="false" />
<button idMso="FileSave" visible="false" />
<!-- I WANT TO ADD A LINE HERE TO MAKE THE COMAddIn VISIBLE -->
<!-- In VBA I've got the COMAddIn as an object, and I see a propertie called GUID and ProgID -->
</officeMenu>


Can anyone help me with this issue?

<menu idQ="???" visible="true" />

or

<menu id="???" visible="true" />

I don't know what to use for ???, i tried GUID and ProgID, for both idQ and id, none seem to work.


Thanks.