AddinInitialize

Add-in Express™ Support Service
That's what is more important than anything else

AddinInitialize
Intialization of add-in 
RikardG




Posts: 95
Joined: 2009-10-19
Hi,

As suggested in the article http://www.add-in-express.com/docs/net-outlook-addins.php I'm using the "AddinInitialize" for intializing my code. The problem is that the "AddinInitialize" event is not always called first. If I for example opens a saved mail fr om my desktop, there is always a "PropertyChanging" event that fires before (it will even fire before the "NewInspector" and "InspectorActivate" events).

Where should I put my initalization code? I'm developing for Outlook 2010.
Posted 03 May, 2011 04:48:12 Top
Eugene Astafiev


Guest


Hi Rikard,

It is a known issue in Outlook. Please note that in Ribbonized host applications the following events are fired first:

* OnRibbonBeforeCreate
* OnRibbonBeforeLoad
* OnRibbonLoaded

Please try to use them too for initializing the add-in.
Posted 04 May, 2011 03:15:22 Top