Esteban Astudillo
Posts: 146
Joined: 2006-02-27
|
The AddinModule exposes two events: AddinInitialize and AddinStartupComplete. Similarly, the ADXOutlookEvents exposes a Startup event.
When would you use one or the other? Any recommendations on which one use?
I know that AddinStartupComplete is triggered after AddinInitialize, but other than that I’m not sure how to take advantage of these events. Is there a document where I can answer all these questions?
|
|
Sergey Grischenko
Add-in Express team
Posts: 7235
Joined: 2004-07-05
|
Hi Esteban.
1. The AddinInitialize event occurs when an add-in starts but controls have not been connected/created yet (here you can add any ADX toolbars/controls and ADX will create them in a host application automatically).
2. The AddinStartupComplete event occurs when an add-in starts and controls have already been connected/created (here you can any ADX toolbars/controls and ADX will create them in a host application immediately or you can initialize controls depending on a condition).
3. The Startup event occurs when an add-in connects to Outlook application events. This event is fired after the AddinStartupComplete event (here you can perform any Outlook specific code).
|
|