I have an Outlook add-in developed using VSTO Outlook 2010 template which has a ribbon. The ribbon xml is
<?xml version="1.0" encoding="UTF-8"?>
<customUI onLoad="Ribbon_Load" xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab idMso="TabAddIns">
<group id="PluginGroup" label="the Collective">
<button id="FolderSelector" onAction="FolderSelector_Click" screentip="Click to select forwarding folder" label="Folder Selector" showImage="false" />
<labelControl id="label1" label="Current Folder :" screentip="Folder which all email will be forwarded" />
<labelControl id="guiCurrrentChooserFolder" label="Please Select a folder" />
</group>
</tab>
</tabs>
</ribbon>
</customUI>
This ribbon shows and functions properly in Outlook 2016. However, the ribbon does not show in Outlook 2007. Is this a compatibility issue? How can I modify this xml
to support Outlook 2007 as well?
Other than the UI, the functionality of the Add-In is working in both Outlook 2016 and Outlook 2007. I'm using Visual Studio 2015 to develop this.