In my Office 2007 add-ins I'd add a property page like this:
and then add my UserControl to the pages variable passed in. With Outlook 2010 I set a breakpoint in OptionsPagesAdd and when I go to File->Options inside of Outlook that breakpoint doesn't get hit.
Is there a change we need to do to our code now, or is there a different area I'm supposed to look for custom property pages?
Code:
Application.OptionsPagesAdd += OptionsPagesAdd;
and then add my UserControl to the pages variable passed in. With Outlook 2010 I set a breakpoint in OptionsPagesAdd and when I go to File->Options inside of Outlook that breakpoint doesn't get hit.
Is there a change we need to do to our code now, or is there a different area I'm supposed to look for custom property pages?