Inspector.Activate event under VS2005 C#?

T

TC

Hey All,

I was wondering if anyone knows how or happens to have a snippet of code
demonstrating how to hook into the Inspector.Activate event under Visual
Studio 2005 using C#?

This event does not appear under the obvious object model and I'm unsure how
to proceed.

Thanks,

TC
 
T

TC

Answered my own question which may be helpful to others:

private void
Inspectors_NewInspector(Microsoft.Office.Interop.Outlook.Inspector
Inspector)

{

((Microsoft.Office.Interop.Outlook.InspectorEvents_Event)Inspector).Activate

+= new
Microsoft.Office.Interop.Outlook.InspectorEvents_ActivateEventHandler(Inspector_Activate);

}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top