<?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: migrate from .NET to C++ in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516009#M13903</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;My guess is that you are trying to do some type of rubber banding where you give the user immediate feedback.&lt;BR /&gt;&lt;BR /&gt;The way that you are doing this appears to be by actually modifying the underlying objects which seems inefficient.&amp;nbsp; My guess is that rewriting this in C++ is not going to help you.&lt;BR /&gt;&lt;BR /&gt;I'm not sure how to do this efficiently in ArcMap.&amp;nbsp; I did search the forums and found the following post:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/82755-Save-a-Geometry-(draw-using-Rubberband)-as-a-feature-in-Feature-Class"&gt;http://forums.arcgis.com/threads/82755-Save-a-Geometry-(draw-using-Rubberband)-as-a-feature-in-Feature-Class&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Actually I move many objects in 1 Hz (once a second). Application slows down as objects' number increase. I searched about dynamic display but it doesn't have many features that non-dynamic display have. So I can't use it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm really don't know what to do; since you say migration to C++ won't help me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank for your reply&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 May 2013 14:17:46 GMT</pubDate>
    <dc:creator>oyleiste</dc:creator>
    <dc:date>2013-05-21T14:17:46Z</dc:date>
    <item>
      <title>migrate from .NET to C++</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516005#M13899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I developed an application in C# .NET with ArcGIS modules. I want to migrate my application from .NET to C++ to get better performance, since I'm not satisfied with ArcGIS's performance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What do you think? Does is worth? Why?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 May 2013 12:08:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516005#M13899</guid>
      <dc:creator>oyleiste</dc:creator>
      <dc:date>2013-05-21T12:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: migrate from .NET to C++</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516006#M13900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If a high percentage of the time is spent executing your code then refactoring or rewriting it can make sense.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It really depends on exactly what your code is doing.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 May 2013 12:22:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516006#M13900</guid>
      <dc:creator>RichardWatson</dc:creator>
      <dc:date>2013-05-21T12:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: migrate from .NET to C++</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516007#M13901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;If a high percentage of the time is spent executing your code then refactoring or rewriting it can make sense.&lt;BR /&gt;&lt;BR /&gt;It really depends on exactly what your code is doing.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My project has an ArcMap object which loads maps and DTED files. User can draw some lines, polygons, polylines, circles, etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There is map navigation tools: Pan, Zoom in/out, etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;User can add text, add custom notes, custom signs, etc. ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My main problem is updating an element's locatin (PartialRefresh, DeleteElement, PartialRefresh, AddElement, PartialRefresh) &lt;/SPAN&gt;&lt;SPAN style="text-decoration:underline;"&gt;every second&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe I should use dynamic map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Well, what do you think?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your reply&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 May 2013 12:46:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516007#M13901</guid>
      <dc:creator>oyleiste</dc:creator>
      <dc:date>2013-05-21T12:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: migrate from .NET to C++</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516008#M13902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;My guess is that you are trying to do some type of rubber banding where you give the user immediate feedback.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The way that you are doing this appears to be by actually modifying the underlying objects which seems inefficient.&amp;nbsp; My guess is that rewriting this in C++ is not going to help you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure how to do this efficiently in ArcMap.&amp;nbsp; I did search the forums and found the following post:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/82755-Save-a-Geometry-(draw-using-Rubberband)-as-a-feature-in-Feature-Class"&gt;http://forums.arcgis.com/threads/82755-Save-a-Geometry-(draw-using-Rubberband)-as-a-feature-in-Feature-Class&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 May 2013 14:10:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516008#M13902</guid>
      <dc:creator>RichardWatson</dc:creator>
      <dc:date>2013-05-21T14:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: migrate from .NET to C++</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516009#M13903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;My guess is that you are trying to do some type of rubber banding where you give the user immediate feedback.&lt;BR /&gt;&lt;BR /&gt;The way that you are doing this appears to be by actually modifying the underlying objects which seems inefficient.&amp;nbsp; My guess is that rewriting this in C++ is not going to help you.&lt;BR /&gt;&lt;BR /&gt;I'm not sure how to do this efficiently in ArcMap.&amp;nbsp; I did search the forums and found the following post:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/82755-Save-a-Geometry-(draw-using-Rubberband)-as-a-feature-in-Feature-Class"&gt;http://forums.arcgis.com/threads/82755-Save-a-Geometry-(draw-using-Rubberband)-as-a-feature-in-Feature-Class&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Actually I move many objects in 1 Hz (once a second). Application slows down as objects' number increase. I searched about dynamic display but it doesn't have many features that non-dynamic display have. So I can't use it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm really don't know what to do; since you say migration to C++ won't help me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank for your reply&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 May 2013 14:17:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/migrate-from-net-to-c/m-p/516009#M13903</guid>
      <dc:creator>oyleiste</dc:creator>
      <dc:date>2013-05-21T14:17:46Z</dc:date>
    </item>
  </channel>
</rss>

