<?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 Can be custom command placed in attribute table window toolbar in ArcMap? in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/can-be-custom-command-placed-in-attribute-table/m-p/619688#M16658</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #242729; background-color: rgba(248, 248, 248, 0.6);"&gt;Is it possible to place custom command on ArcMap's attribute table window toolbar? As far as I understand I need GUID or ProgID of this toolbar in order to find appropriate &lt;A href="http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#ICommandItem.htm"&gt;ICommandItem&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #242729; background-color: rgba(248, 248, 248, 0.6);"&gt;&amp;nbsp;with &lt;A href="http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#icommandbars_find.htm"&gt;ICommandBars.Find&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #242729; background-color: rgba(248, 248, 248, 0.6);"&gt;&amp;nbsp;method. But I cannot find this ID.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Sep 2016 06:18:01 GMT</pubDate>
    <dc:creator>MaxMax2</dc:creator>
    <dc:date>2016-09-16T06:18:01Z</dc:date>
    <item>
      <title>Can be custom command placed in attribute table window toolbar in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/can-be-custom-command-placed-in-attribute-table/m-p/619688#M16658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #242729; background-color: rgba(248, 248, 248, 0.6);"&gt;Is it possible to place custom command on ArcMap's attribute table window toolbar? As far as I understand I need GUID or ProgID of this toolbar in order to find appropriate &lt;A href="http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#ICommandItem.htm"&gt;ICommandItem&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #242729; background-color: rgba(248, 248, 248, 0.6);"&gt;&amp;nbsp;with &lt;A href="http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#icommandbars_find.htm"&gt;ICommandBars.Find&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #242729; background-color: rgba(248, 248, 248, 0.6);"&gt;&amp;nbsp;method. But I cannot find this ID.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2016 06:18:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/can-be-custom-command-placed-in-attribute-table/m-p/619688#M16658</guid>
      <dc:creator>MaxMax2</dc:creator>
      <dc:date>2016-09-16T06:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Can be custom command placed in attribute table window toolbar in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/can-be-custom-command-placed-in-attribute-table/m-p/619689#M16659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as I understand you have to register your command into the right component category:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;[ComRegisterFunction]&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;private static void Reg(string regKey)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; ESRI.ArcGIS.ADF.CATIDs.MxCommands.Register(regKey);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;[ComUnregisterFunction]&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;private static void Unreg(string regKey)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; ESRI.ArcGIS.ADF.CATIDs.MxCommands.Unregister(regKey);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure if there exists an appropriate component category in your case, but you may have a look into the ESRI.ArcGIS.ADF.CATIDs namespace, there are a lot of component categories listed. Maybe there's one for the attribute table also...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Sep 2016 13:25:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/can-be-custom-command-placed-in-attribute-table/m-p/619689#M16659</guid>
      <dc:creator>KarlHuber</dc:creator>
      <dc:date>2016-09-17T13:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Can be custom command placed in attribute table window toolbar in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/can-be-custom-command-placed-in-attribute-table/m-p/619690#M16660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply. But for placing command in specific place (such as toolbar)&amp;nbsp;a developer should use &lt;A href="http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#icommandbars_find.htm"&gt;ICommandBars.Find&lt;/A&gt;&amp;nbsp;method to find appropriate toolbar or context menu. In order to call this method the&amp;nbsp;identifier (CLSID or ProgID) of the toolbar has to be known. This IDs are published in the&amp;nbsp;&lt;A href="http://resources.esri.com/help/9.3/arcgisdesktop/com/shared/desktop/reference/arcmapids.htm"&gt;ArcMap Ids&lt;/A&gt;&amp;nbsp;article, but I cannot find the one for attribute table window toolbar there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 01:00:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/can-be-custom-command-placed-in-attribute-table/m-p/619690#M16660</guid>
      <dc:creator>MaxMax2</dc:creator>
      <dc:date>2016-09-19T01:00:19Z</dc:date>
    </item>
  </channel>
</rss>

