<?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: Customizing Attribute Table view/form in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/customizing-attribute-table-view-form/m-p/403242#M10768</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kevin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Take a look at &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#/ITableWindow3_Interface/000v00000196000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;ITableWindow3&lt;/A&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#//001200000qv3000000" rel="nofollow noopener noreferrer" target="_blank"&gt;IStandaloneTable&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something along the lines of this (NOT TESTED)&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
ITable Table = TheTableOfInsterest;
IStandaloneTable SAT = new StandaloneTable();
SAT.Table = Table;
ITableWindow3 tw3 = new TableWindow() as ITableWindow3;
tw3.Application = App;
if (tw3 == null)
&amp;nbsp; return;
tw3 = tw3.FindViaStandaloneTable(SAT) as ITableWindow3;
tw3.Show(true);
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;G&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 18:23:05 GMT</pubDate>
    <dc:creator>GregRieck</dc:creator>
    <dc:date>2021-12-11T18:23:05Z</dc:date>
    <item>
      <title>Customizing Attribute Table view/form</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/customizing-attribute-table-view-form/m-p/403241#M10767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Howdy All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Please excuse my ignorance here. it's been about 6 years since I've dealt with ArcObjects....&amp;nbsp; So I am trying to add a new button to the form that shows the attribute table of a layer...&amp;nbsp; I'm pretty sure this can be done, but i have NO idea as to where to start...&amp;nbsp; Could someone please point me in the correct direction????&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/attachment.php?attachmentid=10376&amp;amp;stc=1&amp;amp;d=1322516395"&gt;&lt;IMG src="http://forums.arcgis.com/attachment.php?attachmentid=10376&amp;amp;stc=1&amp;amp;d=1322516395" /&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Kevin Orcutt&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ps.&amp;nbsp; forgot to mention that this problem is using ArcGIS 10...&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Nov 2011 19:41:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/customizing-attribute-table-view-form/m-p/403241#M10767</guid>
      <dc:creator>KevinOrcutt</dc:creator>
      <dc:date>2011-11-28T19:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing Attribute Table view/form</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/customizing-attribute-table-view-form/m-p/403242#M10768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kevin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Take a look at &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#/ITableWindow3_Interface/000v00000196000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;ITableWindow3&lt;/A&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#//001200000qv3000000" rel="nofollow noopener noreferrer" target="_blank"&gt;IStandaloneTable&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something along the lines of this (NOT TESTED)&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
ITable Table = TheTableOfInsterest;
IStandaloneTable SAT = new StandaloneTable();
SAT.Table = Table;
ITableWindow3 tw3 = new TableWindow() as ITableWindow3;
tw3.Application = App;
if (tw3 == null)
&amp;nbsp; return;
tw3 = tw3.FindViaStandaloneTable(SAT) as ITableWindow3;
tw3.Show(true);
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;G&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:23:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/customizing-attribute-table-view-form/m-p/403242#M10768</guid>
      <dc:creator>GregRieck</dc:creator>
      <dc:date>2021-12-11T18:23:05Z</dc:date>
    </item>
  </channel>
</rss>

