ADX Extensions and Reading Pane

Add-in Express™ Support Service
That's what is more important than anything else

ADX Extensions and Reading Pane
 
Matthias Kwiedor




Posts: 35
Joined: 2004-10-14
Hi!

In your Extensions Overview you are showing just the Outlook Grid with a Extensions Pane which looks very good. But regular you have on the right site (or bottom) the reading pane with the preview of the mail.

We planed to use the ADX Extensions to have not the reading pane showed up, because we want to show the informations over a own form using the ADX Extensions. Now my question: Is there a way to disable the reading pane dynamicly?


Regards


Matthias Kwiedor
Posted 13 Jul, 2006 05:40:21 Top
Fedor Shihantsov


Guest


You can find a CommandBarButton (Right, Bottom, or Off buttons) programmaticaly and call its Execute method.

Posted 13 Jul, 2006 06:29:27 Top
Matthias Kwiedor




Posts: 35
Joined: 2004-10-14
Hi Fedor!

Thank you for your fast response! Do you have some references to this?

I tried following, but get no luck!

Outlook.Explorer olExplorer = _OutlookApp.ActiveExplorer();
Microsoft.Office.Core.CommandBarPopup btn = (Microsoft.Office.Core.CommandBarPopup)olExplorer.CommandBars.FindControl(Microsoft.Office.Core.MsoControlType.msoControlDropdown, 7095, System.Reflection.Missing.Value, System.Reflection.Missing.Value);
if (btn != null) { btn.Execute(); }

This should execute "Create new Mail" at Outlook 2003 over Menu!


Thanks for your help.


Matthias
Posted 13 Jul, 2006 07:40:02 Top