I'm creating a COM add-in for Outlook and I'm trying to target all 'still used' versions of Outlook: 2003, 2007, 2010. However, the add-in's UI (which is rather simple, a CommandBar) doesn't display in Outlook 2003.
The version of the Interop.Outlook library I am using is version 12, which is the smallest one I can find when adding references in VS2010. I think that this version is a step beyond the Interop library for Outlook 2003...but I'm not sure.
Questions:
Is my assumption correct? That using Interop.Outlook version 12.0 is beyond the Interop for Outlook 2003, and that I should revert to a smaller version (10.0 maybe?). This would explain why I can't retrieve Outlook 2003 object model and add some UI to it.
How could I use the previous version if this is indeed the case (I cannot find it in the references list for VS2010)?
Thanks!