<?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: Help query layer form add in in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/help-query-layer-form-add-in/m-p/1037873#M38692</link>
    <description>&lt;P&gt;&lt;SPAN&gt;1. &lt;EM&gt;filling attributes with predefined values&lt;/EM&gt; &amp;lt; editing templates and domains are really good for this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. &lt;EM&gt;make queries from combo boxes&lt;/EM&gt; &amp;lt; I have been successful doing this with python tool parameter properties and (updateParameters) parameter validation.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But I get that .NET is the best (only) way to totally control a user interface if required!!&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Mar 2021 23:28:52 GMT</pubDate>
    <dc:creator>curtvprice</dc:creator>
    <dc:date>2021-03-17T23:28:52Z</dc:date>
    <item>
      <title>Help query layer form add in</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/help-query-layer-form-add-in/m-p/1036885#M38557</link>
      <description>&lt;P&gt;Hi everyone:&lt;BR /&gt;I used to create my own tools using python snippets and I'm having a hard time trying to move to .net sdk.&lt;BR /&gt;I need to develop a combo box to choose from layer unique id values on a layer, and apply a query based on this selection.&lt;BR /&gt;I don't find any easy example on the arcgis .net sdk documentation that help me to create it and start to understand sdk logic.&lt;BR /&gt;Do you know some helpful resources?&lt;BR /&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 21:27:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/help-query-layer-form-add-in/m-p/1036885#M38557</guid>
      <dc:creator>Jose_FranciscoSánchez_Díaz1</dc:creator>
      <dc:date>2021-03-15T21:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help query layer form add in</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/help-query-layer-form-add-in/m-p/1036959#M38558</link>
      <description>&lt;P&gt;May I ask, what is your use case for using the .NET SDK?&amp;nbsp; I'm asking because it is such a big jump (especially if you aren't already a .NET expert)&amp;nbsp;&amp;nbsp;from&amp;nbsp; scripting. The SDK is normally used only if you must mess with the UI, interact with the display, work with data in non-standard ways, or modify symbology in ways not supported in arcpy.mp + CIM.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;There's some great stuff on the Esri Academy for example:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.esri.com/training/catalog/5e9fa07f8179a50b6abdbabc/arcgis-pro-sdk-for-.net%3A-beginning-pro-customization-showing-pro-extensibility-patterns-of-the-sdk/" target="_self"&gt;Beginning Pro Customization&lt;/A&gt; (video)&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.esri.com/training/catalog/5eb192ef59bcad254d30a50e/arcgis-pro-sdk-development-fundamentals/" target="_self"&gt;ArcGIS Pro Dev Fundamentals&lt;/A&gt; (Learning Plan)&lt;/P&gt;&lt;P&gt;Hope this helps you out.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Mar 2021 00:36:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/help-query-layer-form-add-in/m-p/1036959#M38558</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-03-16T00:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help query layer form add in</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/help-query-layer-form-add-in/m-p/1037865#M38690</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1325"&gt;@curtvprice&lt;/a&gt;&amp;nbsp;Thanks for the info!&lt;BR /&gt;I used to use arcobjects to create my own buttons, to simplify tasks as filling attributes with predefined values, make queries from combo boxes, and that kind of thing.&lt;BR /&gt;Python snippets performance was not great but as a python fan it was easier for my to program in this language than vba or .net.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 22:52:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/help-query-layer-form-add-in/m-p/1037865#M38690</guid>
      <dc:creator>Jose_FranciscoSánchez_Díaz1</dc:creator>
      <dc:date>2021-03-17T22:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help query layer form add in</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/help-query-layer-form-add-in/m-p/1037873#M38692</link>
      <description>&lt;P&gt;&lt;SPAN&gt;1. &lt;EM&gt;filling attributes with predefined values&lt;/EM&gt; &amp;lt; editing templates and domains are really good for this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. &lt;EM&gt;make queries from combo boxes&lt;/EM&gt; &amp;lt; I have been successful doing this with python tool parameter properties and (updateParameters) parameter validation.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But I get that .NET is the best (only) way to totally control a user interface if required!!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 23:28:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/help-query-layer-form-add-in/m-p/1037873#M38692</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-03-17T23:28:52Z</dc:date>
    </item>
  </channel>
</rss>

