<?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 ArcGIS Mobile for Windows Code from 10.0 to 10.1 in ArcGIS for Windows Mobile Questions</title>
    <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/migrate-arcgis-mobile-for-windows-code-from-10-0/m-p/640129#M2662</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK, so there are some important changes from 10.0 to 10.1:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For the "ControlCreatingFeatureAttributes" event, it is now with AttributeEditControl in 10.1 as opposed to "EditFeatureAttributesPage" in 10.0:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;AddHandler AttributeEditControl.ControlCreatingFeatureAttributes, AddressOf EditFeatureAttributesPage_ControlCreatingFeatureAttributes&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For the "GeometryCollectionStarted" event, because in 10.1 the feature collection workflow is very different to 10.0, this event does not apply anymore. In 10.0, collect actual geometry and edit attributes are completely different tasks as part of the feature collection workflow, whereas in 10.1 the two are bit more integrated (less mouse clicks).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I might have missed it, but it would be good if ESRI mobile team can include some upgrade notes in their API to outline these important changes (some other ESRI API tells you how to compile code from older version to newer version).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Sep 2013 05:47:20 GMT</pubDate>
    <dc:creator>HenryKo</dc:creator>
    <dc:date>2013-09-18T05:47:20Z</dc:date>
    <item>
      <title>Migrate ArcGIS Mobile for Windows Code from 10.0 to 10.1</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/migrate-arcgis-mobile-for-windows-code-from-10-0/m-p/640128#M2661</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;BR /&gt;&lt;SPAN&gt;I am migrating a custom extension (for Windows tablets) from 10.0 to 10.1 (which is SDK version 10.1.1). I have the following code which I haven't been able to compile. The API documentation is poorly documented and couldn't find much on the Internet and in the ESRI samples.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to convert the "ControlCreatingFeatureAttributes" event listener to 10.1.1, but have not had much luck (the C# version is commented out, the VB.NET version is uncommented):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'EditFeatureAttributesPage.ControlCreatingFeatureAttributes += New EventHandler(Of EditFeatureAttributesPageEventArgs)(AddressOf EditFeatureAttributesPage_ControlCreatingFeatureAttributes) &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AddHandler EditFeatureAttributesPage.ControlCreatingFeatureAttributes, AddressOf EditFeatureAttributesPage_ControlCreatingFeatureAttributes&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, I haven't been able to convert the "GeometryCollectionStarted" event listener either (C# and VB.NET lines provided below):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'm_collectFeatureTask.GeometryCollectionStarted += New EventHandler(Of GeometryCollectionStartedEventArgs)(AddressOf CollectFeaturesTask_GeometryCollectionStarted) &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AddHandler m_collectFeatureTask.GeometryCollectionCompleted, AddressOf CollectFeaturesTask_GeometryCollectionCompleted&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help is appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 01:26:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/migrate-arcgis-mobile-for-windows-code-from-10-0/m-p/640128#M2661</guid>
      <dc:creator>HenryKo</dc:creator>
      <dc:date>2013-09-16T01:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate ArcGIS Mobile for Windows Code from 10.0 to 10.1</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/migrate-arcgis-mobile-for-windows-code-from-10-0/m-p/640129#M2662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK, so there are some important changes from 10.0 to 10.1:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For the "ControlCreatingFeatureAttributes" event, it is now with AttributeEditControl in 10.1 as opposed to "EditFeatureAttributesPage" in 10.0:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;AddHandler AttributeEditControl.ControlCreatingFeatureAttributes, AddressOf EditFeatureAttributesPage_ControlCreatingFeatureAttributes&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For the "GeometryCollectionStarted" event, because in 10.1 the feature collection workflow is very different to 10.0, this event does not apply anymore. In 10.0, collect actual geometry and edit attributes are completely different tasks as part of the feature collection workflow, whereas in 10.1 the two are bit more integrated (less mouse clicks).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I might have missed it, but it would be good if ESRI mobile team can include some upgrade notes in their API to outline these important changes (some other ESRI API tells you how to compile code from older version to newer version).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 05:47:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/migrate-arcgis-mobile-for-windows-code-from-10-0/m-p/640129#M2662</guid>
      <dc:creator>HenryKo</dc:creator>
      <dc:date>2013-09-18T05:47:20Z</dc:date>
    </item>
  </channel>
</rss>

