vote up 0 vote down star

I have a custom task pane I've made in VSTO for Outlook 2007, but it needs a fair amount of screen real estate to be functional. I'd like to just take over the place of the Reading Pane, as it won't really be needed when this addon is active. It's also a really great spot since this addon relies on drag-and-drop from mail folders to this task pane, and the closer I can get it to the folder pane, the better.

Any way to replace the Reading Pane, or at least toggle it's visibility?

flag

57% accept rate

1 Answer

vote up 1 vote down

I dont think there is a way in OOM to do this .. I you can change the size of you region though.

I have seen it done though with add-in-express tool http://www.add-in-express.com but that may be 2 much work for you to change to that model.

link|flag
1  
Tell a lie I found this method on the explorer object ShowPane() msdn.microsoft.com/en-us/library/… – 76mel May 7 at 15:16
Ah that really helps. So just for reference if needed one can minimize the preview pane by doing: Application.ActiveExplorer().ShowPane(Microsoft.Office.Interop.Outlook.OlPane.olPreview, false); And to bring it back: Application.ActiveExplorer().ShowPane(Microsoft.Office.Interop.Outlook.OlPane.olPreview, true); – matthews May 7 at 16:49
Yep, not sure thats what you wanted though ? – 76mel May 7 at 17:49

Your Answer

Get an OpenID
or

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