<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ArcGIS Explorer Application Configuration Manager Crashing in ArcGIS Explorer Desktop Questions</title>
    <link>https://community.esri.com/t5/arcgis-explorer-desktop-questions/arcgis-explorer-application-configuration-manager/m-p/363425#M2287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: lukepaine&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have developed a custom add in for ArcGIS Explorer, which all works well. I have four buttons in the Add In, which I am now trying to a custom configuration (so that they appear on the Home ribbon, instead of the Add Ins tab. Two of the buttons work fine - they can be added from the manager, I can save it, and then appear fine in Explorer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;With the other two, as soon as I try to add the button in the Manager, an Unhandled exception message pops up, and the Manager crashes (error message below).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]15310[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The buttons that work are named butLayerManager and butRailLocator. The two that don't are butSettings and butAbout.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Very strange, and very annoying! &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas would be greatly appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Jun 2012 22:45:01 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2012-06-18T22:45:01Z</dc:date>
    <item>
      <title>ArcGIS Explorer Application Configuration Manager Crashing</title>
      <link>https://community.esri.com/t5/arcgis-explorer-desktop-questions/arcgis-explorer-application-configuration-manager/m-p/363425#M2287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: lukepaine&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have developed a custom add in for ArcGIS Explorer, which all works well. I have four buttons in the Add In, which I am now trying to a custom configuration (so that they appear on the Home ribbon, instead of the Add Ins tab. Two of the buttons work fine - they can be added from the manager, I can save it, and then appear fine in Explorer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;With the other two, as soon as I try to add the button in the Manager, an Unhandled exception message pops up, and the Manager crashes (error message below).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]15310[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The buttons that work are named butLayerManager and butRailLocator. The two that don't are butSettings and butAbout.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Very strange, and very annoying! &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas would be greatly appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2012 22:45:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-explorer-desktop-questions/arcgis-explorer-application-configuration-manager/m-p/363425#M2287</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-06-18T22:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Explorer Application Configuration Manager Crashing</title>
      <link>https://community.esri.com/t5/arcgis-explorer-desktop-questions/arcgis-explorer-application-configuration-manager/m-p/363426#M2288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: lukepaine&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Well I have managed to solve my problem... The issue was that in my XML configuration file, I had 5 tools: butLayerManager, butRailLocator, winRailLocator, butSettings and butAbout.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The butRailLocator and winRailLocator tools essentially do the same things; the win version is a dockable window, the but is a windows form. For this project, we did not require the dockable window version, so i commented it out in the xml config. i.e.:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;!--&amp;lt;dockWindow
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id="winRailLocator"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; assembly="RailExplorer_ForExplorer.dll"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; className="RailExplorer_ForExplorer.winRailLocator"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; caption="Rail Locator (dockable)"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; largeImage="Images\winRailLocator_LargeImage.png"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; smallImage="Images\winRailLocator_SmallImage.png" /&amp;gt;--&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Turns out that the commenting screws with the addin. If i remove the comments, rebuild the addin, all is fine and works well in Explorer and the Application Manager.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Incidentally, if i now go to add a new Add-in component using visual studio, i get an error saying "Invalid ArcGIS Add-in Project. Unable to add new Add-in item to this project." I haven't found a way to get around this yet though.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:56:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-explorer-desktop-questions/arcgis-explorer-application-configuration-manager/m-p/363426#M2288</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T16:56:21Z</dc:date>
    </item>
  </channel>
</rss>

