nameSpace.OptionsPagesAdd

R

Ralf Jansen

I'm trying to handle the nameSpace.OptionsPagesAdd event to show a custom property page for a
folder. see code below.
Problem may eventhandler is only called the first time i open the option dialog for a folder and
then never again as if my EventHandler has been detached.
What did i miss?


private void ThisApplication_Startup(object sender, System.EventArgs e)
{
Outlook.NameSpace nameSpace = this.GetNamespace("MAPI");
nameSpace.OptionsPagesAdd += new
Outlook.NameSpaceEvents_OptionsPagesAddEventHandler(nameSpace_OptionsPagesAdd);
}

private void nameSpace_OptionsPagesAdd(Microsoft.Office.Interop.Outlook.PropertyPages
Pages, Microsoft.Office.Interop.Outlook.MAPIFolder Folder)
{
Pages.Add(_mailStoreFolderPropertyPage, "MailStore");
}


Ralf
 
K

Ken Slovak - [MVP - Outlook]

Make sure you set and keep a reference to NameSpace, perhaps in a hash table
or something like that so it isn't garbage collected.
 

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