Is there an event in Microsoft Outlook 2010 which one can subscribe on, in order to known when Outlook has finished initializing and all components, folders etc. have been loaded?
相关问题
- Outlook Object Model - Hooking to the Conversation
- Outlook Object Model - Hooking to the Conversation
- Analyzing Outlook HANG dump (with GoogleCalendarSy
- My email signature will not appear when generating
- Excel Workbook Activate Event Ambiguity for C# VST
相关文章
- C# 调用outlook发送邮件获取邮件签名
- Deleting columns from a table with merged cells
- Outlook SMTPClient server error 5.3.4 5.2.0
- How to Embed Image in Outlook Signature?
- How to mock rows in a Excel VSTO plugin?
- Save content of Email body in outlook to a file
- How to reference the mail which triggered the outl
- Outlook WebAddin is detected as contextual addin i
Not sure about VSTO but good ol' COM addins get the
StartupComplete
"event" (viaIDTExtensibility2
) for exactly that purpose.Not that I'm aware of. Usually, addins don't do anything that requires talking with many outlook objects till some triggering event happens (like opening a mail, or creating a new inspector) so THAT'S when you'd typically see some custom code hooked in.
In my addins, the code connected to startup does things like load up some config, and maybe connect to a DB (although even that I tend to do on demand vs once at startup).
Ok, I found out what I needed to do...
http://msdn.microsoft.com/en-us/library/ff869298.aspx