Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
  1. Why is there no intellisense for .Outlook.InspectorsEvents_NewInspectorEventHandler(foo);?
  2. Can I enable it somehow and if so how?
  3. 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.

share|improve this question

1 Answer

The Inspector represents the window that contains the Outlook item. To access the item contained in the window, you need to use Inspector.CurrentItem:

Outlook.MailItem mailItem = inspector.CurrentItem as Outlook.MailItem;

For the intellisense issue, try this using statement:

using Outlook = Microsoft.Office.Interop.Outlook;
inspectors.NewInspector += new Outlook.InspectorsEvents_NewInspectorEventHandler(foo);
share|improve this answer
I'll try that in a while. However, the code I've used is taken directly from MS's site so I surprised that it's wrong... Or maybe I've done something less intelligent. :) Thanks friend! – Konrad Viltersten Sep 6 '12 at 17:48
1  
Please accept this answer if it helped you so that others may benefit, otherwise let us know what worked or didn't work. – SliverNinja Sep 7 '12 at 14:07
I sure will. I just got a few other stuff that popped out. I just started with add-in coding so there are many issues biting my back-end. No need to worry - I understand the importance of feed-back for the integrity of this knowledge DB. Just check my "accept rate". And, of course, it's important to give credit. First to 1 million in reputation goes to heaven for free, I've heard. :) – Konrad Viltersten Sep 7 '12 at 14:28
Thanks for supporting our community. This is what keeps people coming back. =) BTW...nice job on the accept rate, you are much better than many SO users. – SliverNinja Sep 7 '12 at 14:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.