<?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 Re: Programatic start of ArcGISExplorer in ArcGIS Explorer Desktop Questions</title>
    <link>https://community.esri.com/t5/arcgis-explorer-desktop-questions/programatic-start-of-arcgisexplorer/m-p/486289#M2962</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That won't work if the user decides to choose a directory other than program files.&amp;nbsp; In a 32-bit program if you open the registry HKEY_LOCAL_MACHINE\SOFTWARE\ESRI\Explorer1750 and look for InstallDir, you can get the path.&amp;nbsp; If you are running 64-bit it will be HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\ESRI\Explorer1750.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Nov 2011 17:28:01 GMT</pubDate>
    <dc:creator>RobHaynes</dc:creator>
    <dc:date>2011-11-03T17:28:01Z</dc:date>
    <item>
      <title>Programatic start of ArcGISExplorer</title>
      <link>https://community.esri.com/t5/arcgis-explorer-desktop-questions/programatic-start-of-arcgisexplorer/m-p/486287#M2960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;With version 1700 I looked in the registry under the path "HKEY_CURRENT_USER\Software\ESRI\Explorer1700\InstallDir" to find the path to where it was installed.&amp;nbsp; I then appended "bin\e3.exe" to the path and used "ShellExecute" to startup ArcGis Explorer.&amp;nbsp; For version 1750, that registry path does not exist anymore.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How do I find the path to the ArcGISExplorer executable so I can start it from a separate program?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2011 16:02:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-explorer-desktop-questions/programatic-start-of-arcgisexplorer/m-p/486287#M2960</guid>
      <dc:creator>RobHaynes</dc:creator>
      <dc:date>2011-11-01T16:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Programatic start of ArcGISExplorer</title>
      <link>https://community.esri.com/t5/arcgis-explorer-desktop-questions/programatic-start-of-arcgisexplorer/m-p/486288#M2961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;try this...VB.NET&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim path As String&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;path = Environment.GetFolderPath(Environment.SpecialFolder.CommonProgramFiles)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;or &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;path = Environment.GetFolderPath(Environment.SpecialFolder.CommonProgramFilesX86)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim openExplorer As New Process&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;openExplorer.StartInfo.FileName = path + "\Explorer\bin\E3.exe"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;openExplorer.Start()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;hope its help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 06:22:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-explorer-desktop-questions/programatic-start-of-arcgisexplorer/m-p/486288#M2961</guid>
      <dc:creator>JurajMalega</dc:creator>
      <dc:date>2011-11-02T06:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Programatic start of ArcGISExplorer</title>
      <link>https://community.esri.com/t5/arcgis-explorer-desktop-questions/programatic-start-of-arcgisexplorer/m-p/486289#M2962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That won't work if the user decides to choose a directory other than program files.&amp;nbsp; In a 32-bit program if you open the registry HKEY_LOCAL_MACHINE\SOFTWARE\ESRI\Explorer1750 and look for InstallDir, you can get the path.&amp;nbsp; If you are running 64-bit it will be HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\ESRI\Explorer1750.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 17:28:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-explorer-desktop-questions/programatic-start-of-arcgisexplorer/m-p/486289#M2962</guid>
      <dc:creator>RobHaynes</dc:creator>
      <dc:date>2011-11-03T17:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Programatic start of ArcGISExplorer</title>
      <link>https://community.esri.com/t5/arcgis-explorer-desktop-questions/programatic-start-of-arcgisexplorer/m-p/486290#M2963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Process.Start("Path") can also serve the purpose&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Dec 2011 10:45:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-explorer-desktop-questions/programatic-start-of-arcgisexplorer/m-p/486290#M2963</guid>
      <dc:creator>ManojrajTeli</dc:creator>
      <dc:date>2011-12-23T10:45:27Z</dc:date>
    </item>
  </channel>
</rss>

