2 Add-Ins with ADX - Region sometimes not loaded

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

2 Add-Ins with ADX - Region sometimes not loaded
 
Daniel Ranft




Posts: 14
Joined: 2012-09-13
Hi,

i'm writing two outlook add-ins using "Add-in Express Regions for Microsoft Outlook and VSTO". While only writing one add-in, everything is fine, but when starting Outlook with both add-ins, sometimes (not reproducable) one region is missing.
Both regions are in compose inspectors, the first one is TopSubpane, the second one is a RightSubpane.

Here is the FormsManager-Code:

MyItem.InspectorLayout = ADXOlInspectorLayout.RightSubpane;
MyItem.InspectorItemTypes = ADXOlInspectorItemTypes.olMail;
MyItem.InspectorMode = ADXOlInspectorMode.Compose;
MyItem.IsHiddenStateAllowed = false;
MyItem.AlwaysShowHeader = true;
MyItem.FormClassName = typeof(MyPane).FullName;



MyOtherItem.ExplorerLayout = ADXOlExplorerLayout.TopReadingPane;
MyOtherItem.ExplorerItemTypes = ADXOlExplorerItemTypes.olMailItem;
MyOtherItem.Cached = ADXOlCachingStrategy.OneInstanceForAllFolders;
MyOtherItem.InspectorLayout = ADXOlInspectorLayout.TopSubpane;
MyOtherItem.InspectorItemTypes = ADXOlInspectorItemTypes.olMail;
MyOtherItem.InspectorMode = ADXOlInspectorMode.Compose;
MyOtherItem.Splitter = ADXOlSplitterBehavior.None;
MyOtherItem.IsHiddenStateAllowed = false;
MyOtherItem.IsMinimizedStateAllowed = false;
MyOtherItem.UseOfficeThemeForBackground = true;
MyOtherItem.FormClassName = typeof(MyOtherPane).FullName;


Any suggestions, why this may happen? Known bug?
Posted 01 Aug, 2013 08:56:24 Top
Andrei Smolin


Add-in Express team


Posts: 18828
Joined: 2006-05-11
Hello Daniel,

We will try to reproduce this. What Outlook version, service pack and bitness are you using? What Regions build are you using?


Andrei Smolin
Add-in Express Team Leader
Posted 01 Aug, 2013 09:11:15 Top
Daniel Ranft




Posts: 14
Joined: 2012-09-13
Sorry, i forgot to subscribe the post, so i didn't receive your response.
I'm using OL2013 (32 bit) under Win7 (64 bit) - Regions.dll is build 2.0.2143.2010 in both add-ins.

EDIT:
Both add-ins were loaded via HKCU (from the appropriate bin\debug directories)
Posted 13 Aug, 2013 02:31:39 Top
Andrei Smolin


Add-in Express team


Posts: 18828
Joined: 2006-05-11
Daniel,

I cannot reproduce the issue with build 2.2. Could you please install that build, see http://www.add-in-express.com/downloads/outlook-regions.php?


Andrei Smolin
Add-in Express Team Leader
Posted 14 Aug, 2013 05:36:04 Top