<?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: Automating the process of importing a part as a reference to a part file and transfer all properties to iproperties in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12489072#M162313</link>
    <description>&lt;P&gt;Hi guys, well based on the info provided by &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7946284"&gt;@A.Acheson&lt;/a&gt;&amp;nbsp;&amp;nbsp;(thank you for that though) I cleaned and modified the code from Mode the Machine (thanks to @Adam Nagy as well) the intention is to import small group of files converting them to Inventor after the import but is important to get in the inventor part file all the properties that are in the files that we import.&lt;/P&gt;&lt;P&gt;I attached the code (was working on it but end of the day for me) it work fine from one file importing the file as a reference but Im trying to access a folder capturing the files there and then execute the import for all those files&lt;/P&gt;&lt;P&gt;this is the piece of code for reading the files as you can see I previously add a multivalue parameter in Inventor to check is reading the files&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Imports System.IO&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sub Main&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;' Specify the folder path you want to get the file names from&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Dim folderPath &lt;/SPAN&gt;&lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;C:\XFolder&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'In here the path to the folder you want to get the files frt&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;' Get an array of file names in the specified folder&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Dim files &lt;/SPAN&gt;&lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; Directory.&lt;/SPAN&gt;&lt;SPAN&gt;GetFiles&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;folderPath&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;'Files are now in the array variable files&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MultiValue.&lt;/SPAN&gt;&lt;SPAN&gt;List&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;LIST_NAMES&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; files&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt;&lt;SPAN&gt; File &lt;/SPAN&gt;&lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;&lt;SPAN&gt; In files &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;' You can loop through the array to access each file name&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.&lt;/SPAN&gt;&lt;SPAN&gt;WriteLine&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;File&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;End Sub&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 10 Jan 2024 18:21:27 GMT</pubDate>
    <dc:creator>pedro.lopezMGBEC</dc:creator>
    <dc:date>2024-01-10T18:21:27Z</dc:date>
    <item>
      <title>Automating the process of importing a part as a reference to a part file and transfer all properties to iproperties</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12487994#M162283</link>
      <description>&lt;P&gt;Hello there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a logic rule to automate importing a part as a reference (from Solidege/Solidworks/catia/pro-e) and then importing all the properties to the part file with logic; any ideas will be greatly appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've found this.&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;' Assuming transfer a custom property named "PartNumber" from Solid Edge to Inventor&lt;/SPAN&gt;
&lt;SPAN class=""&gt;Dim&lt;/SPAN&gt; importedPart &lt;SPAN class=""&gt;As&lt;/SPAN&gt; PartDocument
importedPart = ThisDoc.Document

&lt;SPAN class=""&gt;' Access the custom property from Solid Edge&lt;/SPAN&gt;
&lt;SPAN class=""&gt;Dim&lt;/SPAN&gt; seProperty &lt;SPAN class=""&gt;As&lt;/SPAN&gt; &lt;SPAN class=""&gt;String&lt;/SPAN&gt;
seProperty = importedPart.PropertySets.Item(&lt;SPAN class=""&gt;"Custom Properties"&lt;/SPAN&gt;).Item(&lt;SPAN class=""&gt;"PartNumber"&lt;/SPAN&gt;).Value

&lt;SPAN class=""&gt;' Transfer the property to an Inventor custom property&lt;/SPAN&gt;
ThisDoc.Document.PropertySets.Item(&lt;SPAN class=""&gt;"Inventor User Defined Properties"&lt;/SPAN&gt;).Add(&lt;SPAN class=""&gt;"PartNumber"&lt;/SPAN&gt;, seProperty)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 10:36:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12487994#M162283</guid>
      <dc:creator>pedro.lopezMGBEC</dc:creator>
      <dc:date>2024-01-10T10:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Automating the process of importing a part as a reference to a part file and transfer all properties to iproperties</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12488536#M162299</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11848778"&gt;@pedro.lopezMGBEC&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you do this manually what are the steps? If the iproperties are not there allready then there is likely no way to get them other than input them from a user input.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What file extensions are you working with?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 15:07:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12488536#M162299</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2024-01-10T15:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Automating the process of importing a part as a reference to a part file and transfer all properties to iproperties</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12488571#M162300</link>
      <description>&lt;P&gt;The steps manually will be as follow:&lt;/P&gt;&lt;P&gt;Import a file&lt;/P&gt;&lt;P&gt;Select a SolidEdge Part file (.par extension)&lt;/P&gt;&lt;P&gt;Activate the Reference option&lt;/P&gt;&lt;P&gt;Select the Solidedge property model to map&lt;/P&gt;&lt;P&gt;and then click ok&lt;/P&gt;&lt;P&gt;and then save the file as Inventor part fie.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Idealy I would like to have this as batch import&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 15:19:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12488571#M162300</guid>
      <dc:creator>pedro.lopezMGBEC</dc:creator>
      <dc:date>2024-01-10T15:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Automating the process of importing a part as a reference to a part file and transfer all properties to iproperties</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12488604#M162304</link>
      <description>&lt;P&gt;&lt;A href="https://modthemachine.typepad.com/my_weblog/2019/04/import-anycad-documents-associatively.html" target="_blank" rel="noopener"&gt;Here is an article that runs through the options for importing Anycad Documents&lt;/A&gt;. It is written in VBA so you will need to convert the code to whatever your using.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 15:28:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12488604#M162304</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2024-01-10T15:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Automating the process of importing a part as a reference to a part file and transfer all properties to iproperties</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12488897#M162309</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11848778"&gt;@pedro.lopezMGBEC&lt;/a&gt;.&amp;nbsp; Here is a link to the online help page about how to set up the property mapping from non-Inventor files to native Inventor files, when Importing them.&amp;nbsp; It tells you two ways to access those settings manually, one of which seems to be like a standalone application that works with Inventor, that can be started through the Windows start menu, under your Autodesk stuff.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-2D62A488-C874-4CA9-AA76-166B0836C55F" target="_blank" rel="noopener"&gt;To Map Properties from Imported CAD Data to Standard Inventor Properties&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems like the property copy over part of the import task should be handled automatically for you, once you have those settings set the way you want them.&amp;nbsp; With that in mind, I would assume that you do not need to include anything special in your code for that portion of the task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another little detail that may be important to pay attention to in this code process is the difference between the regular &lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-ImportedComponentDefinition" target="_blank" rel="noopener"&gt;ImportedComponentDefinition&lt;/A&gt;&amp;nbsp;API object Type, and the &lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-ImportedGenericComponentDefinition" target="_blank" rel="noopener"&gt;ImportedGenericComponentDefinition&lt;/A&gt;&amp;nbsp;API object Type, which is a Type that is derived from the other, but has many more properties.&amp;nbsp; The&amp;nbsp;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-ImportedComponents" target="_blank" rel="noopener"&gt;ImportedComponents&lt;/A&gt;&amp;nbsp;collection object offers 3 methods.&amp;nbsp; One is for adding a new ImportedComponent using what is says is an ImportedComponentDefinition, and the other 2 are for creating new definitions, but both methods say they will return a regular ImportedComponentDefinition.&amp;nbsp; And the documentation for the ImportedGenericComponentDefinition says that the only natural way to access an object of that Type, is by &lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=ImportedGenericComponentDefinition_Copy" target="_blank" rel="noopener"&gt;copying&lt;/A&gt; one that already exists.&amp;nbsp; But as you can see in the 'Mod the Machine' example (and others), we can declare our variable as an ImportedGenericComponentDefinition, then set the value of that variable with the &lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=ImportedComponents_CreateDefinition" target="_blank" rel="noopener"&gt;ImportedComponents.CreateDefinition&lt;/A&gt; method, which still works because this type is derived from that other type.&amp;nbsp; But you will most likely want to be using that derived type in order to access/use all of its added methods &amp;amp; properties.&amp;nbsp; Just wanted to mention that, because derived Types can be confusing to deal with sometimes.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 17:10:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12488897#M162309</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2024-01-10T17:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Automating the process of importing a part as a reference to a part file and transfer all properties to iproperties</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12489072#M162313</link>
      <description>&lt;P&gt;Hi guys, well based on the info provided by &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7946284"&gt;@A.Acheson&lt;/a&gt;&amp;nbsp;&amp;nbsp;(thank you for that though) I cleaned and modified the code from Mode the Machine (thanks to @Adam Nagy as well) the intention is to import small group of files converting them to Inventor after the import but is important to get in the inventor part file all the properties that are in the files that we import.&lt;/P&gt;&lt;P&gt;I attached the code (was working on it but end of the day for me) it work fine from one file importing the file as a reference but Im trying to access a folder capturing the files there and then execute the import for all those files&lt;/P&gt;&lt;P&gt;this is the piece of code for reading the files as you can see I previously add a multivalue parameter in Inventor to check is reading the files&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Imports System.IO&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sub Main&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;' Specify the folder path you want to get the file names from&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Dim folderPath &lt;/SPAN&gt;&lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;C:\XFolder&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'In here the path to the folder you want to get the files frt&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;' Get an array of file names in the specified folder&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Dim files &lt;/SPAN&gt;&lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; Directory.&lt;/SPAN&gt;&lt;SPAN&gt;GetFiles&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;folderPath&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;'Files are now in the array variable files&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MultiValue.&lt;/SPAN&gt;&lt;SPAN&gt;List&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;LIST_NAMES&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; files&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt;&lt;SPAN&gt; File &lt;/SPAN&gt;&lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;&lt;SPAN&gt; In files &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;' You can loop through the array to access each file name&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.&lt;/SPAN&gt;&lt;SPAN&gt;WriteLine&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;File&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;End Sub&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 10 Jan 2024 18:21:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/automating-the-process-of-importing-a-part-as-a-reference-to-a/m-p/12489072#M162313</guid>
      <dc:creator>pedro.lopezMGBEC</dc:creator>
      <dc:date>2024-01-10T18:21:27Z</dc:date>
    </item>
  </channel>
</rss>

