<?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: C# Apprentice Iterate through SubAssembly in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9475396#M64033</link>
    <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7060800"&gt;@ianteneth&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Apr 2020 06:23:05 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-04-28T06:23:05Z</dc:date>
    <item>
      <title>C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9472770#M64031</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need to iterate through the SubAssemblies or SubOccurrences of Main Assembly, i know it possible in VB.Net but i want to do the same in C#.net.&lt;/P&gt;&lt;P&gt;In VB.Net as Following :&lt;/P&gt;&lt;P&gt;Public Sub TraverseAssemblySample()&lt;BR /&gt;&lt;FONT color="#0000ff"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Get the active assembly.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oAsmDoc As AssemblyDocument&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oAsmDoc = ThisApplication.ActiveDocument&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Debug.Print oAsmDoc.DisplayName&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000ff"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Call the function that does the recursion.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call TraverseAssembly(oAsmDoc.ComponentDefinition.Occurrences, 1)&lt;BR /&gt;End Sub&lt;BR /&gt;&lt;BR /&gt;Private Sub TraverseAssembly(Occurrences As ComponentOccurrences, _&lt;BR /&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;&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; Level As Integer)&lt;BR /&gt;&lt;FONT color="#0000ff"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Iterate through all of the occurrence in this collection.&amp;nbsp; This&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' represents the occurrences at the top level of an assembly.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oOcc As ComponentOccurrence&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; For Each oOcc In Occurrences&lt;BR /&gt;&lt;FONT color="#0000ff"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Print the name of the current occurrence.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Debug.Print Space(Level * 3) &amp;amp; oOcc.Name&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000ff"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Check to see if this occurrence represents a subassembly&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' and recursively call this function to traverse through it.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If oOcc.DefinitionDocumentType = kAssemblyDocumentObject Then&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call TraverseAssembly(oOcc.SubOccurrences, Level + 1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone can help ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;The result should be like that&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screenshot.png" style="width: 786px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/761006iB1503998859E3367/image-size/large?v=v2&amp;amp;px=999" role="button" title="screenshot.png" alt="screenshot.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 09:21:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9472770#M64031</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-27T09:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9474111#M64032</link>
      <description>&lt;P&gt;Hi @Anonymous,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is your code converted to C#. Also, remember that there is an Inventor forum dedicated to programming and customization like this. Here is the link to it.&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/bd-p/120" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/inventor-customization/bd-p/120&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2020-04-27 123834.png" style="width: 191px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/761302i1EFAC5FED033B7D5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Annotation 2020-04-27 123834.png" alt="Annotation 2020-04-27 123834.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Converted Code:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;// Get instance of Inventor
            Application application = System.Runtime.InteropServices.Marshal.GetActiveObject("Inventor.Application") as Application;

            // Get the active assembly.
            AssemblyDocument assembly = application.ActiveDocument as AssemblyDocument;
            Console.WriteLine(assembly.DisplayName);

            // Call the function that does the recursion
            TraverseAssembly(assembly.ComponentDefinition.Occurrences, 1);

private static void TraverseAssembly(ComponentOccurrences occurrences, int level)
        {
            // Iterate through all of the occurrences in this collection.
            // This represents the occurrences at the top level of an assembly.
            foreach(ComponentOccurrence occurrence in occurrences)
            {
                // Print the name of the occurrence.
                Console.WriteLine(new String(' ', level) + occurrence.Name);

                // Check to see if this occurrence represenst a subassembly.
                // Recursively call this function to traverse through it.
                if(occurrence.DefinitionDocumentType == DocumentTypeEnum.kAssemblyDocumentObject)
                {
                    TraverseSubAssembly(occurrence.SubOccurrences, level + 1);
                }
            }
        }

        private static void TraverseSubAssembly(ComponentOccurrencesEnumerator occurrences, int level)
        {
            // Iterate through all of the occurrences in this collection.
            // This represents the occurrences at the top level of an assembly.
            foreach (ComponentOccurrence occurrence in occurrences)
            {
                // Print the name of the occurrence.
                Console.WriteLine(new String(' ', level) + occurrence.Name);

                // Check to see if this occurrence represenst a subassembly.
                // Recursively call this function to traverse through it.
                if (occurrence.DefinitionDocumentType == DocumentTypeEnum.kAssemblyDocumentObject)
                {
                    TraverseSubAssembly(occurrence.SubOccurrences, level + 1);
                }
            }
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 17:15:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9474111#M64032</guid>
      <dc:creator>ianteneth</dc:creator>
      <dc:date>2020-04-27T17:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9475396#M64033</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7060800"&gt;@ianteneth&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2020 06:23:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9475396#M64033</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-28T06:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9481793#M64034</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7060800" target="_blank"&gt;@ianteneth&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;unfortunately it doesn't work in Assembly with multisub Assembly.&lt;BR /&gt;I got this Error Message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error: 0x80004005 (E_FAIL)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;static void Main(string[] args)
        {
            Inventor.ApprenticeServerDocument assembly;
            Inventor.ApprenticeServerComponent oSvr = new Inventor.ApprenticeServerComponent();
            assembly = oSvr.Open(@"C:\This_Inventor_Project\Parts\Baugruppe2.iam");

            Console.WriteLine(assembly.DisplayName);

            // Call the function that does the recursion
            TraverseAssembly(assembly.ComponentDefinition.Occurrences, 1);
        }

        private static void TraverseAssembly(Inventor.ComponentOccurrences occurrences, int level)
        {
            // Iterate through all of the occurrences in this collection.
            // This represents the occurrences at the top level of an assembly.
            foreach (Inventor.ComponentOccurrence occurrence in occurrences)
            {
                // Print the name of the occurrence.
                Console.WriteLine(new String(' ', level) + occurrence.Name);

                // Check to see if this occurrence represenst a subassembly.
                // Recursively call this function to traverse through it.
                if (occurrence.DefinitionDocumentType == Inventor.DocumentTypeEnum.kAssemblyDocumentObject)
                {
                    TraverseSubAssembly(occurrence.SubOccurrences, level + 1);
                }
            }
        }

        private static void TraverseSubAssembly(Inventor.ComponentOccurrencesEnumerator occurrences, int level)
        {
            // Iterate through all of the occurrences in this collection.
            // This represents the occurrences at the top level of an assembly.
            foreach (Inventor.ComponentOccurrence occurrence in occurrences)
            {
                // Print the name of the occurrence.
                Console.WriteLine(new String(' ', level) + occurrence.Name);

                // Check to see if this occurrence represenst a subassembly.
                // Recursively call this function to traverse through it.
                if (occurrence.DefinitionDocumentType == Inventor.DocumentTypeEnum.kAssemblyDocumentObject)
                {
                    TraverseSubAssembly(occurrence.SubOccurrences, level + 1);
                }
            }
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&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-04-30 09_09_26-Window.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/762909i246781BAB8782DCF/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-04-30 09_09_26-Window.png" alt="2020-04-30 09_09_26-Window.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 07:15:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9481793#M64034</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-30T07:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9482531#M64035</link>
      <description>&lt;P&gt;Are there by chance suppressed parts in this assembly? I tested this on my computer with a suppressed subassembly and I received the same error. Below is the updated code to skip over suppressed components. See if that fixes the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;static void Main(string[] args)
        {

            // Get instance of Inventor
            Application application = System.Runtime.InteropServices.Marshal.GetActiveObject("Inventor.Application") as Application;

            // Get the active assembly.
            AssemblyDocument assembly = application.ActiveDocument as AssemblyDocument;
            Console.WriteLine(assembly.DisplayName);

            // Call the function that does the recursion
            TraverseAssembly(assembly.ComponentDefinition.Occurrences, 1);

            Console.ReadKey();
        }


private static void TraverseAssembly(ComponentOccurrences occurrences, int level)
        {
            // Iterate through all of the occurrences in this collection.
            // This represents the occurrences at the top level of an assembly.
            foreach(ComponentOccurrence occurrence in occurrences)
            {
                // Skip if occurrence is suppressed
                if (!occurrence.Suppressed)
                {
                    // Print the name of the occurrence.
                    Console.WriteLine(new String(' ', level) + occurrence.Name);

                    // Check to see if this occurrence represenst a subassembly.
                    // Recursively call this function to traverse through it.
                    if (occurrence.DefinitionDocumentType == DocumentTypeEnum.kAssemblyDocumentObject)
                    {
                        TraverseSubAssembly(occurrence.SubOccurrences, level + 4);
                    }
                }
            }
        }



private static void TraverseSubAssembly(ComponentOccurrencesEnumerator occurrences, int level)
        {
            // Iterate through all of the occurrences in this collection.
            // This represents the occurrences at the top level of an assembly.
            foreach (ComponentOccurrence occurrence in occurrences)
            {
                // Skip if occurrence is suppressed
                if (!occurrence.Suppressed)
                {
                    // Print the name of the occurrence.
                    Console.WriteLine(new String(' ', level) + occurrence.Name);

                    // Check to see if this occurrence represenst a subassembly.
                    // Recursively call this function to traverse through it.
                    if (occurrence.DefinitionDocumentType == DocumentTypeEnum.kAssemblyDocumentObject)
                    {
                        TraverseSubAssembly(occurrence.SubOccurrences, level + 4);
                    }
                }
            }
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 12:38:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9482531#M64035</guid>
      <dc:creator>ianteneth</dc:creator>
      <dc:date>2020-04-30T12:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9483555#M64036</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7060800"&gt;@ianteneth&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thank&amp;nbsp;you so much for the&amp;nbsp;speedy reply.&lt;/P&gt;&lt;P&gt;I dont have&amp;nbsp;&lt;SPAN&gt;suppressed parts in this assembly, I got the same Error&amp;nbsp;with your updated code.&amp;nbsp;&lt;/SPAN&gt;&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="error.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/763291i21E42C34933C8DA6/image-size/large?v=v2&amp;amp;px=999" role="button" title="error.png" alt="error.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 18:51:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9483555#M64036</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-30T18:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9483692#M64037</link>
      <description>&lt;P&gt;Hmm. I just successfully tested this code on a decently big nested assembly. Below is some output from that. Can you click the "View Details" link in the error and expand a few sections and post a screenshot? And I am guessing you cannot share the files?&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-left" image-alt="Annotation 2020-04-30 151230.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/763317iA75B55FFB8BB1A08/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Annotation 2020-04-30 151230.png" alt="Annotation 2020-04-30 151230.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 19:37:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9483692#M64037</guid>
      <dc:creator>ianteneth</dc:creator>
      <dc:date>2020-04-30T19:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9484063#M64038</link>
      <description>&lt;P&gt;u use the API in you code, i tested this code with API it worked fine, but with Apprentice Server i get Error, could you please test it with Apprentice Server (same as mycode) you will get the same Error.&lt;/P&gt;&lt;P&gt;See please the Screenshot in attached.&lt;/P&gt;&lt;P&gt;Thanks.&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="2.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/763394i16A8463B6297445A/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/763396i8C20153A745690FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="3.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/763395i2D2D2609A41BBF9E/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 22:44:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9484063#M64038</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-30T22:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9485163#M64039</link>
      <description>&lt;P&gt;I am just noticing that you are asking about Apprentice in the title... Sorry about that! I am not familiar with Apprentice Server. Maybe we can find someone on here that is familiar with that. Maybe &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7812054"&gt;@WCrihfield&lt;/a&gt; can help&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 13:59:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9485163#M64039</guid>
      <dc:creator>ianteneth</dc:creator>
      <dc:date>2020-05-01T13:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9485348#M64040</link>
      <description>&lt;P&gt;Nope.&amp;nbsp; I haven't worked with Apprentice either.&amp;nbsp; Though, I could be wrong, but I think those who don't work with Apprentice, can still access and use its functionality, but those whose default is Apprentice, can only use Apprentice. &amp;nbsp;&amp;nbsp; I've heard it is faster to use for certain things, too, but as I said, I don't really know that much about the differences, to give much advice about the specifics.&amp;nbsp; Sorry.&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 15:31:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9485348#M64040</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2020-05-01T15:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: C# Apprentice Iterate through SubAssembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9485507#M64041</link>
      <description>&lt;P&gt;@Anonymoussince I didn't address the Apprentice Server aspect of your question I might help get others to answer if you uncheck my earlier answer as the solution. I think the 3 dots to the top right of my post will let you mark it as "Not Solution"?&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 16:36:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/c-apprentice-iterate-through-subassembly/m-p/9485507#M64041</guid>
      <dc:creator>ianteneth</dc:creator>
      <dc:date>2020-05-01T16:36:48Z</dc:date>
    </item>
  </channel>
</rss>

