<?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: Develop Desktop apps using ArcGIS for Personal Use in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406958#M10876</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It isn't disabled in any way...&amp;nbsp; Did you find information to the contrary?&lt;/P&gt;&lt;P&gt;The only warning is....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ffffff; background-color: #323232;"&gt;We just ask that you use ArcGIS for Personal Use for personal, noncommercial projects.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Mar 2020 10:57:08 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2020-03-11T10:57:08Z</dc:date>
    <item>
      <title>Develop Desktop apps using ArcGIS for Personal Use</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406957#M10875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can we &lt;STRONG&gt;Develop Desktop apps&lt;/STRONG&gt; and plugins with ArcObjects SDK and ArcGIS Pro .Net SDK &lt;STRONG&gt;using ArcGIS for Personal Use License?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am planning to buy one if Personal Use License have this capablitiy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2020 07:18:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406957#M10875</guid>
      <dc:creator>Arun_PrasadRamanujadoss</dc:creator>
      <dc:date>2020-03-11T07:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Develop Desktop apps using ArcGIS for Personal Use</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406958#M10876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It isn't disabled in any way...&amp;nbsp; Did you find information to the contrary?&lt;/P&gt;&lt;P&gt;The only warning is....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ffffff; background-color: #323232;"&gt;We just ask that you use ArcGIS for Personal Use for personal, noncommercial projects.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2020 10:57:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406958#M10876</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2020-03-11T10:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Develop Desktop apps using ArcGIS for Personal Use</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406959#M10877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it. Thanks..&lt;/P&gt;&lt;P&gt;I didn't found any contrary information, but didn't found any confirmation either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If someone who is using ArcGIS for Personal Use can confirm&amp;nbsp;the availability of ArcObjects SDK on the myEsri Portal, then I can subscribe without heistation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2020 11:32:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406959#M10877</guid>
      <dc:creator>Arun_PrasadRamanujadoss</dc:creator>
      <dc:date>2020-03-11T11:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Develop Desktop apps using ArcGIS for Personal Use</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406960#M10878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the view of the available "Developer Tools" download in "My ESRI" for my Personal Use license, so ArcObjects SDK is available. However, I strongly recommend to develop in Pro's new SDK. ArcObjects is dead in the waters with ArcMap eventually going. Alternative is Python scripting. I developed an ArcMap / Pro and Python 2.x/3.x compatible toolbox with Python scripting that runs really nicely in both apps using the Python "future" package, so essentially writing 3.x code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g. put this in the header of all your scripts for a start:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from __future__ import print_function&lt;BR /&gt;from __future__ import absolute_import&lt;BR /&gt;from __future__ import unicode_literals&lt;BR /&gt;from __future__ import division&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/484853_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2020 21:59:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406960#M10878</guid>
      <dc:creator>MarcoBoeringa</dc:creator>
      <dc:date>2020-03-11T21:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Develop Desktop apps using ArcGIS for Personal Use</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406961#M10879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot exactly the confirmation I required. Going to subscribe ArcGIS for Personal Use today.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2020 07:03:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/develop-desktop-apps-using-arcgis-for-personal-use/m-p/406961#M10879</guid>
      <dc:creator>Arun_PrasadRamanujadoss</dc:creator>
      <dc:date>2020-03-16T07:03:41Z</dc:date>
    </item>
  </channel>
</rss>

