I'm building my first plug-in to Outlook and according to the code here, I'm supposed to add the following code to the event handler.
new Microsoft.Office.Interop
.Outlook.InspectorsEvents_NewInspectorEventHandler(foo);
As i type it in, the syntax works (no red underscores) and the code compiles. However, for some reason, the intellisense doesn't present me with that particular option, meaninig I have to type it all by myself. That makes me sad.
Even worse, as I execute the project, the listener event is fired but the line below doesn't result in an object - mailItem remains null.
Outlook.MailItem mailItem = inspector as Outlook.MailItem;
- Why is there no intellisense for
.Outlook.InspectorsEvents_NewInspectorEventHandler(foo);? - Can I enable it somehow and if so how?
- How can I access the newly created message frame?
My bet is that it's got to do with Interop reference and I suspect that it actually doesn't work since the Count field in inspectors equals to zero both before and after the handler adding operation.
Execution of the line below only returns null, instead of an instance of MailItem, despite the fact that a new mail window opens (with no changes to it, of course). While the input parameter inspector differs from null, the as-'ification seems to nullify it.
I run VS10/.NET4.