<?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: iFactory Part using iLogic in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6800745#M104104</link>
    <description>&lt;P&gt;Hello Truc.Quach&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;keep in mind:&lt;/P&gt;
&lt;P&gt;iParts and iAssemblies have some limitations. max 1000 rows&lt;/P&gt;
&lt;P&gt;and they will get slow.&lt;/P&gt;
&lt;P&gt;Excel makes is slow&lt;/P&gt;
&lt;P&gt;how large will your catalog be??&lt;/P&gt;
&lt;P&gt;only parts? or also assemblies?&lt;/P&gt;
&lt;P&gt;how do you keep track of all those files without Vault?&lt;/P&gt;
&lt;P&gt;iparts are linked to there mother, the advantage of CC is that they are not.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Jan 2017 11:29:32 GMT</pubDate>
    <dc:creator>HermJan.Otterman</dc:creator>
    <dc:date>2017-01-12T11:29:32Z</dc:date>
    <item>
      <title>iFactory Part using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6799572#M104103</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been combining through the forums trying to figure out the best way to make a huge catalog of hardware without using Vault or content center. Originally, my thoughts were that an iFactory would work but found out that we need the properties still in the child parts. Then I read someone suggestion a solution to do an iLogic iFactory part. So far I have been able to get the parameters to update from an excel and save the separate files. This all seemed to easy and of course I was right, none of the parameters were saving with the separate files.&amp;nbsp;I tired separating the rules and that didn't work. Anyways, I've hit a fence so any help will be greatly appreciated. Thanks for your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;'Define Range
oStartRow = 1
oEndRow = 3

Dim o As Integer

For o = oStartRow To oEndRow	

Dim i As Integer 
i = i + 1
iProperties.Value("Project", "Description")=GoExcel.CellValue(EXCEL_LINK,"Sheet1","A" &amp;amp; i)
DIA=GoExcel.CellValue(EXCEL_LINK,"Sheet1","C" &amp;amp; i)
LEGNTH=GoExcel.CellValue(EXCEL_LINK,"Sheet1","D" &amp;amp; i)
MATERIAL=GoExcel.CellValue(EXCEL_LINK,"Sheet1","E" &amp;amp; i)
PART_CODE=GoExcel.CellValue(EXCEL_LINK,"Sheet1","B" &amp;amp; i)


FILE_NAME=PART_CODE &amp;amp; ".ipt"


ThisApplication.ActiveDocument.update
'iLogicVb.RunRule("FileCreate")

MsgBox("Diameter =" &amp;amp; DIA &amp;amp; vbCrLf &amp;amp;
"Legnth=" &amp;amp; LEGNTH &amp;amp; vbCrLf &amp;amp;
"Material ="&amp;amp; MATERIAL &amp;amp; vbCrLf &amp;amp;
"Part Code ="&amp;amp; PART_CODE)

File Creation
Dim oDoc As Inventor.Document = ThisApplication.ActiveDocument
Dim FName As String = oDoc.FullFileName
Dim FNP As Integer = InStrRev(FName, "\", -1)'Dim oPath As String = Left(FName, FNP)
Dim oNewName As String = PART_CODE

Dim oType As String
Select Case oDoc.DocumentType
Case kPartDocumentObject:     oType = ".ipt"
Case kAssemblyDocumentObject: oType = ".iam"
Case kDrawingDocumentObject:  oType = ".idw"
End Select

oDoc.SaveAs(oPath &amp;amp; oNewName &amp;amp; oType, True)

Next 


&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Jan 2017 21:40:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6799572#M104103</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-11T21:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: iFactory Part using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6800745#M104104</link>
      <description>&lt;P&gt;Hello Truc.Quach&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;keep in mind:&lt;/P&gt;
&lt;P&gt;iParts and iAssemblies have some limitations. max 1000 rows&lt;/P&gt;
&lt;P&gt;and they will get slow.&lt;/P&gt;
&lt;P&gt;Excel makes is slow&lt;/P&gt;
&lt;P&gt;how large will your catalog be??&lt;/P&gt;
&lt;P&gt;only parts? or also assemblies?&lt;/P&gt;
&lt;P&gt;how do you keep track of all those files without Vault?&lt;/P&gt;
&lt;P&gt;iparts are linked to there mother, the advantage of CC is that they are not.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 11:29:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6800745#M104104</guid>
      <dc:creator>HermJan.Otterman</dc:creator>
      <dc:date>2017-01-12T11:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: iFactory Part using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6801013#M104105</link>
      <description>&lt;P&gt;Hey Herm,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the current part I am doing is about 6,400 parts but I can also split this part into separate&amp;nbsp;excel files if it gets too slow. We have a own tracking&amp;nbsp;system that this will integrate to, but it needs all the unique parts generate and uploaded into it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By generating the part through code&amp;nbsp;and parameters&amp;nbsp;it&amp;nbsp;is still consider an iPart?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&amp;nbsp;goal I am trying to achieve is too create all 6,400 parts as if I were to&amp;nbsp;go in create them all by hand one by one without actually doing that lol. &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 13:35:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6801013#M104105</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-12T13:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: iFactory Part using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6804355#M104106</link>
      <description>&lt;P&gt;do they all look the same?&lt;/P&gt;
&lt;P&gt;with iParts, they will be derived from a master, and that link wil be there.&lt;/P&gt;
&lt;P&gt;how many dimensions wil change?&lt;/P&gt;
&lt;P&gt;do you have all variations in an excel file (dimensions?)&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2017 16:54:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6804355#M104106</guid>
      <dc:creator>HermJan.Otterman</dc:creator>
      <dc:date>2017-01-13T16:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: iFactory Part using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6804532#M104107</link>
      <description>&lt;P&gt;right now its just a bolt and the diameter, length, material, and part code changes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once this is figure out&amp;nbsp;I will have to apply it to washers and nuts. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2017 18:05:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6804532#M104107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-13T18:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: iFactory Part using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6805871#M104108</link>
      <description>&lt;P&gt;Why?? they ar all in the content center..? just add you number&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jan 2017 18:56:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6805871#M104108</guid>
      <dc:creator>HermJan.Otterman</dc:creator>
      <dc:date>2017-01-14T18:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: iFactory Part using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6819435#M104109</link>
      <description>&lt;P&gt;We have our own program that we have to integrate all the hardware to.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ended up figuring a solution and will put it here in case anyone else ever has the same issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;create two separate codes&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;one to pull in the excel data and update the parameters of the part&lt;/P&gt;&lt;P&gt;one to update and save the file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;create a separate API that runs the first code, then the second code, and updates the excel row call out.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2017 14:06:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ifactory-part-using-ilogic/m-p/6819435#M104109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-20T14:06:13Z</dc:date>
    </item>
  </channel>
</rss>

