<?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: Need to display table for long ipart table in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9302080#M189237</link>
    <description>&lt;P&gt;Hi Kirk,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks for sending me the file! Like we discussed in the email, the reason why the 1000+ members are not shown is because of the Key columns. When there are Key columns, the number of rows shown is always limited to 1000 or less regardless of 2020 or 2019 with registry key.&lt;/P&gt;
&lt;P&gt;To show all the 1000+ member rows, you need to remove the keys from the table.&lt;/P&gt;
&lt;P&gt;Thanks again!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Feb 2020 22:20:43 GMT</pubDate>
    <dc:creator>johnsonshiue</dc:creator>
    <dc:date>2020-02-06T22:20:43Z</dc:date>
    <item>
      <title>Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8686988#M189221</link>
      <description>&lt;P&gt;I have an ipart with more that 1000 member rows. I would like to see the table so that I can generate the members.&amp;nbsp; One limitation they have put in iparts is the table will only display if there are fewer than 1000 members.&amp;nbsp; In older versions of Inventor, I could add a DWORD (MaxRowInBrowser) to the proper folder in the system registry to temporarily overcome this limitation.&amp;nbsp; The registry location that I used in the past was:&lt;/P&gt;
&lt;P&gt;HKEY_CURRENT_USER\Software\Autodesk\Inventor\RegistryVersion xx\System\Preferences\Catalog&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just tried to add this with Inventor 2018 and the "Catalog" folder is not there, so I am not sure now where to add this new DWORD.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can someone tell me what the proper folder would be?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 12:40:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8686988#M189221</guid>
      <dc:creator>karthur1</dc:creator>
      <dc:date>2019-03-27T12:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8687103#M189222</link>
      <description>&lt;P&gt;I think if it were possible to display larger tables Autodesk would have already activated that feature.&amp;nbsp; In case the solution can't be found in the registry, the next best solution is iLogic.&amp;nbsp; Here's the code I use to generate the members of an iAssembly Factory:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;oTxn&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransactionManager&lt;/SPAN&gt;.&lt;SPAN&gt;StartTransaction&lt;/SPAN&gt;(&lt;SPAN&gt;oDoc&lt;/SPAN&gt;, &lt;SPAN&gt;"iAssembly Generation"&lt;/SPAN&gt;)
&lt;SPAN&gt;iAF&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;iAssemblyFactory&lt;/SPAN&gt;

&lt;SPAN&gt;'Activate this code to generate all members in the Factory.&lt;/SPAN&gt;
&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oRow&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;iAssemblyTableRow&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;iAF&lt;/SPAN&gt;.&lt;SPAN&gt;TableRows&lt;/SPAN&gt;
	&lt;SPAN&gt;iAF&lt;/SPAN&gt;.&lt;SPAN&gt;CreateMember&lt;/SPAN&gt;(&lt;SPAN&gt;oRow&lt;/SPAN&gt;)
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;'Activate this code to generate single members or a group of members based on row numbers.&lt;/SPAN&gt;
&lt;SPAN&gt;'For i = 1 To 1500&lt;/SPAN&gt;
&lt;SPAN&gt;'	oDoc.ComponentDefinition.iAssemblyFactory.CreateMember(i)&lt;/SPAN&gt;
&lt;SPAN&gt;'Next&lt;/SPAN&gt;

&lt;SPAN&gt;oTxn&lt;/SPAN&gt;.&lt;SPAN&gt;End&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And here's the same code for iPart Factory:&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;oTxn&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransactionManager&lt;/SPAN&gt;.&lt;SPAN&gt;StartTransaction&lt;/SPAN&gt;(&lt;SPAN&gt;oDoc&lt;/SPAN&gt;, &lt;SPAN&gt;"iPart Generation"&lt;/SPAN&gt;)
&lt;SPAN&gt;iPF&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;iPartFactory&lt;/SPAN&gt;

&lt;SPAN&gt;'Activate this code to generate all members in the Factory.&lt;/SPAN&gt;
&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oRow&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;iPartTableRow&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;iPF&lt;/SPAN&gt;.&lt;SPAN&gt;TableRows&lt;/SPAN&gt;
	&lt;SPAN&gt;iPF&lt;/SPAN&gt;.&lt;SPAN&gt;CreateMember&lt;/SPAN&gt;(&lt;SPAN&gt;oRow&lt;/SPAN&gt;)
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;'Activate this code to generate single members or a group of members based on row numbers.&lt;/SPAN&gt;
&lt;SPAN&gt;'For i = 1 To 1500&lt;/SPAN&gt;
&lt;SPAN&gt;'	oDoc.ComponentDefinition.i&lt;/SPAN&gt;Part&lt;SPAN&gt;Factory.CreateMember(i)&lt;/SPAN&gt;
&lt;SPAN&gt;'Next&lt;/SPAN&gt;

&lt;SPAN&gt;oTxn&lt;/SPAN&gt;.&lt;SPAN&gt;End&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While using the code, keep an eye on your RAM usage via Task Manager etc.&amp;nbsp; I've found that when RAM usage for Inventor goes above 4GB the generation starts to slow down.&amp;nbsp; At that point, close Inventor via Task Manager, put the row number to start from, then let it keep going.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 13:22:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8687103#M189222</guid>
      <dc:creator>philip1009</dc:creator>
      <dc:date>2019-03-27T13:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8687252#M189223</link>
      <description>&lt;P&gt;Thanks for that, but I already have a code to do that.&amp;nbsp; I already have all but a few new members generated.&amp;nbsp; It will take a while to generate all of them.&amp;nbsp; Just thought it would be faster to generate the ones I need.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 14:12:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8687252#M189223</guid>
      <dc:creator>karthur1</dc:creator>
      <dc:date>2019-03-27T14:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8687282#M189224</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/83823"&gt;@karthur1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How about this, edit the ipart family in Excel, and save a copy of it.&amp;nbsp; Then use that to place a table.&amp;nbsp; I assume you want to place it in a drawing?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 14:22:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8687282#M189224</guid>
      <dc:creator>cbenner</dc:creator>
      <dc:date>2019-03-27T14:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8687421#M189225</link>
      <description>&lt;P&gt;I think this is about displaying the list of members in the model browser so each member can be right-clicked and generated without having to resort to iLogic or other methods.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 15:13:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8687421#M189225</guid>
      <dc:creator>philip1009</dc:creator>
      <dc:date>2019-03-27T15:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8688611#M189226</link>
      <description>&lt;P&gt;Hi Kirk,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The old trick should still work. You just need to manually add the registry folder and key. If I recalled correctly, the restriction has been removed on 2019 and 2020.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 21:42:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8688611#M189226</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2019-03-27T21:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8690190#M189227</link>
      <description>&lt;P&gt;Johnson,&lt;/P&gt;
&lt;P&gt;I tried adding the missing folder and key, but no joy.&amp;nbsp; I got around it by just adding the new members to a temporary iam file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Kirk&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 12:07:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8690190#M189227</guid>
      <dc:creator>karthur1</dc:creator>
      <dc:date>2019-03-28T12:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8692268#M189228</link>
      <description>&lt;P&gt;Hi Kirk,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It should work. You may need to edit the table after you add the registry key so that the member rows all appear in the browser. Also, it only works for List by Member, not List by Keys.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 21:38:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8692268#M189228</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2019-03-28T21:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8693974#M189229</link>
      <description>&lt;P&gt;After I added the registry hack....I had to add a row in my table before it would display.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2019 15:12:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8693974#M189229</guid>
      <dc:creator>karthur1</dc:creator>
      <dc:date>2019-03-29T15:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8694313#M189230</link>
      <description>&lt;P&gt;Are there plans to add this function to List by Keys in the future?&amp;nbsp; Is there a reason why this isn't enabled by default instead of having to do some registry hack?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2019 17:02:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8694313#M189230</guid>
      <dc:creator>philip1009</dc:creator>
      <dc:date>2019-03-29T17:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8694800#M189231</link>
      <description>&lt;P&gt;Hi! If I recalled correctly, iPart/iAssembly was built in 32-bit machine days with only up-to 3GB RAM allowed and limited graphics. The limit was added to avoid performance hit when the number of nodes is large. Now, any decent PC is like a super computer in the old days. The limitation is irrelevant now. I recall we remove the restriction in 2019. You don't need the registry key to see all rows. It should work for List as Key too.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2019 20:55:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8694800#M189231</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2019-03-29T20:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8698183#M189232</link>
      <description>&lt;P&gt;I'm on 2019.3 and once I go over roughly 1000 rows none of the members are selectable in the model browser.&amp;nbsp; I have to open the table and Set As Default Row in order to switch between members and resort to iLogic to generate members.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 12:17:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8698183#M189232</guid>
      <dc:creator>philip1009</dc:creator>
      <dc:date>2019-04-01T12:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8699700#M189233</link>
      <description>&lt;P&gt;Hi! I am sorry for my bad memory. I just checked the internal defect. The issue was resolved on 2020, not 2019. For 2019 and earlier, you still need to use the registry setting.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 21:07:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/8699700#M189233</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2019-04-01T21:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9298752#M189234</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi! I am sorry for my bad memory. I just checked the internal defect. The issue was resolved on 2020, not 2019. For 2019 and earlier, you still need to use the registry setting.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Johnson,&lt;/P&gt;
&lt;P&gt;I am using 2020.2 now and just opened a large ipart with 1008 rows.&amp;nbsp; The table is not shown.&amp;nbsp; Just to see, I added a row to the table, but that did not help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-02-05_1022.png" style="width: 283px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/726230iE29F3DA05B61946F/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-02-05_1022.png" alt="2020-02-05_1022.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 16:23:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9298752#M189234</guid>
      <dc:creator>karthur1</dc:creator>
      <dc:date>2020-02-05T16:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9299779#M189235</link>
      <description>&lt;P&gt;Hi Kirk,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems to work for me. I am able to show all 1000+ members in the browser. Did you set it to List by Member? I don't think it will work if it is List by Key (even with the registry hack before).&lt;/P&gt;
&lt;P&gt;If it still does not work, please send the file to me directly (johnson.shiue@autodesk.com). I would like to understand the behavior better.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 23:11:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9299779#M189235</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2020-02-05T23:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9301055#M189236</link>
      <description>&lt;P&gt;Just sent you the ipart.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 14:28:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9301055#M189236</guid>
      <dc:creator>karthur1</dc:creator>
      <dc:date>2020-02-06T14:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9302080#M189237</link>
      <description>&lt;P&gt;Hi Kirk,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks for sending me the file! Like we discussed in the email, the reason why the 1000+ members are not shown is because of the Key columns. When there are Key columns, the number of rows shown is always limited to 1000 or less regardless of 2020 or 2019 with registry key.&lt;/P&gt;
&lt;P&gt;To show all the 1000+ member rows, you need to remove the keys from the table.&lt;/P&gt;
&lt;P&gt;Thanks again!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 22:20:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9302080#M189237</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2020-02-06T22:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9303568#M189238</link>
      <description>&lt;P&gt;Just out of curiosity : why and how can an iPart need this number of entries ?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 15:18:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9303568#M189238</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-07T15:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9303634#M189239</link>
      <description>&lt;P&gt;We use it for bolt families of structural fasteners (ASTM A325, A490... etc) .&amp;nbsp; Different diameter, length, material grade, finish can run up the number of occurances pretty quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 15:45:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9303634#M189239</guid>
      <dc:creator>karthur1</dc:creator>
      <dc:date>2020-02-07T15:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Need to display table for long ipart table</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9304325#M189240</link>
      <description>&lt;P&gt;Hi Alex,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We do have enterprise customers having a large collection of similar parts or assemblies. These parts may have subtle differences but they carry different part numbers.&lt;/P&gt;
&lt;P&gt;Another way to look at it is the fact that you do need to elaborate all the permutations. For example, if you have a part family with 30 different lengths&amp;nbsp; and 30 different widths. Assuming each length can pair with any width, you will have 900 members. The more variations, the bigger the table becomes. Plus, there could be non-geometric differences. It is quite easy to get a large table.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 22:02:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/need-to-display-table-for-long-ipart-table/m-p/9304325#M189240</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2020-02-07T22:02:14Z</dc:date>
    </item>
  </channel>
</rss>

