<?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: BOM Export in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-export/m-p/9822982#M56874</link>
    <description>&lt;P&gt;Thank you for the answer.&lt;/P&gt;&lt;P&gt;Yes, I have had a look at the "Parts Only" BoM. It's basically one of the solutions to my problem. Of course, this means double work, because usually my BoM list is about 200 rows long.&lt;/P&gt;&lt;P&gt;This is the main issue, why I was hoping, that there is a iLogic solution to it.&lt;/P&gt;</description>
    <pubDate>Sun, 25 Oct 2020 12:00:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-10-25T12:00:34Z</dc:date>
    <item>
      <title>BOM Export</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-export/m-p/9822798#M56872</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a mild issue regarding the BOM export part QTY.&lt;/P&gt;&lt;P&gt;My main assembly consists of 3 sub-assemblies. Inventor BOM only shows the QTY of one sub-assembly and QTY of one sub-assembly parts.&lt;/P&gt;&lt;P&gt;Is there somekind of a iLogic solution, so I could export the BOM with the qty of 3 assemblies?&lt;/P&gt;&lt;P&gt;I also attached the picture with the issue in here. Anyone can help me out please?&lt;/P&gt;</description>
      <pubDate>Sun, 25 Oct 2020 07:42:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-export/m-p/9822798#M56872</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-25T07:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Export</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-export/m-p/9822967#M56873</link>
      <description>&lt;P&gt;Its possible to create an iLogic rule to do that. Its dificult beacuse you need to export it first to excel. Then change the excel file. In most cases if you need the total numbers then you can use the "Parts only bom". It will show total numbers of all parts. It works perfect as a list of parts that you need to purchase. Did you have a look at the "Parts only bom"?&lt;/P&gt;</description>
      <pubDate>Sun, 25 Oct 2020 11:46:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-export/m-p/9822967#M56873</guid>
      <dc:creator>JelteDeJong</dc:creator>
      <dc:date>2020-10-25T11:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Export</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-export/m-p/9822982#M56874</link>
      <description>&lt;P&gt;Thank you for the answer.&lt;/P&gt;&lt;P&gt;Yes, I have had a look at the "Parts Only" BoM. It's basically one of the solutions to my problem. Of course, this means double work, because usually my BoM list is about 200 rows long.&lt;/P&gt;&lt;P&gt;This is the main issue, why I was hoping, that there is a iLogic solution to it.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Oct 2020 12:00:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-export/m-p/9822982#M56874</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-25T12:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Export</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-export/m-p/9823074#M56875</link>
      <description>&lt;P&gt;you can try this iLogic rule. It creates a csv (that you can pen with excel). im in a hurry and i have to go now. But if something is unclear leave a message and i will have a look at it later.&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Public&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Class&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ThisRule&lt;/SPAN&gt;

    &lt;SPAN style="color: #ff0000;"&gt;Private&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;properties&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;List&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;Of&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;prop&lt;/SPAN&gt;) = &lt;SPAN style="color: #ff0000;"&gt;New&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;List&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;Of&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;prop&lt;/SPAN&gt;)
    &lt;SPAN style="color: #ff0000;"&gt;Private&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;outputFile&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"c:\temp\output.csv"&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000;"&gt;Public&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;main&lt;/SPAN&gt;()
        &lt;SPAN style="color: #808080;"&gt;' add here more columns as you need them&lt;/SPAN&gt;
        &lt;SPAN style="color: #808080;"&gt;' for set names and property names see:&lt;/SPAN&gt;
        &lt;SPAN style="color: #808080;"&gt;' https://modthemachine.typepad.com/my_weblog/2010/02/accessing-iproperties.html&lt;/SPAN&gt;
        &lt;SPAN style="color: #800000;"&gt;properties&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Add&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;New&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;prop&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Design Tracking Properties"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Part Number"&lt;/SPAN&gt;))
        &lt;SPAN style="color: #800000;"&gt;properties&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Add&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;New&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;prop&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Design Tracking Properties"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Description"&lt;/SPAN&gt;))

        &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;doc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;AssemblyDocument&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;
        &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;bomView&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;BOMView&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;doc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;BOM&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;BOMViews&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Structured"&lt;/SPAN&gt;)

        &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; (&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;File&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Exists&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;outputFile&lt;/SPAN&gt;)) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
            &lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;File&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Delete&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;outputFile&lt;/SPAN&gt;)
        &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
        &lt;SPAN style="color: #800000;"&gt;createHeader&lt;/SPAN&gt;()
        &lt;SPAN style="color: #800000;"&gt;writeRows&lt;/SPAN&gt;(1, &lt;SPAN style="color: #800000;"&gt;bomView&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;BOMRows&lt;/SPAN&gt;)


    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;

    &lt;SPAN style="color: #ff0000;"&gt;Private&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;writeRows&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;parentQty&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Integer&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;rows&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;BOMRowsEnumerator&lt;/SPAN&gt;)

        &lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;row&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;BOMRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;rows&lt;/SPAN&gt;
            &lt;SPAN style="color: #800000;"&gt;writeRowToFile&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Row&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;parentQty&lt;/SPAN&gt;)
            &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; (&lt;SPAN style="color: #800000;"&gt;Row&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ChildRows&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;IsNot&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Nothing&lt;/SPAN&gt;) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
                &lt;SPAN style="color: #800000;"&gt;writeRows&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Row&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TotalQuantity&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;Row&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ChildRows&lt;/SPAN&gt;)
            &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
        &lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;


    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;

    &lt;SPAN style="color: #ff0000;"&gt;Private&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;createHeader&lt;/SPAN&gt;()
        &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;values&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;List&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;Of&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;) = &lt;SPAN style="color: #ff0000;"&gt;New&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;List&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;Of&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;)

        &lt;SPAN style="color: #800000;"&gt;values&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Add&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Qty"&lt;/SPAN&gt;)
        &lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;item&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;prop&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;properties&lt;/SPAN&gt;
            &lt;SPAN style="color: #800000;"&gt;values&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Add&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;item&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;propName&lt;/SPAN&gt;)
        &lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;
        &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;line&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Join&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;";"&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;values&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #800000;"&gt;System&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Environment&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;NewLine&lt;/SPAN&gt;
        &lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;File&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;AppendAllText&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;outputFile&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;line&lt;/SPAN&gt;)
    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;

    &lt;SPAN style="color: #ff0000;"&gt;Private&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;writeRowToFile&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;row&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;BOMRow&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;parentQty&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Integer&lt;/SPAN&gt;)
        &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;def&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;row&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinitions&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(1)
        &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;doc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;def&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;
        &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;values&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;List&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;Of&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;) = &lt;SPAN style="color: #ff0000;"&gt;New&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;List&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;Of&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;)

        &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;qty&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Integer&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;parentQty&lt;/SPAN&gt; * &lt;SPAN style="color: #ff0000;"&gt;Integer&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Parse&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;row&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TotalQuantity&lt;/SPAN&gt;)
        &lt;SPAN style="color: #800000;"&gt;values&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Add&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;qty&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ToString&lt;/SPAN&gt;())
        &lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;item&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;prop&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;properties&lt;/SPAN&gt;
            &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;propSet&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PropertySet&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;doc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;PropertySets&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;item&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;propSet&lt;/SPAN&gt;)
            &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;cProperty&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[Property]&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;propSet&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;item&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;propName&lt;/SPAN&gt;)
            &lt;SPAN style="color: #800000;"&gt;values&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Add&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;cProperty&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt;)
        &lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

        &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;line&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Join&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;";"&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;values&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #800000;"&gt;System&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Environment&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;NewLine&lt;/SPAN&gt;
        &lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;File&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;AppendAllText&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;outputFile&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;line&lt;/SPAN&gt;)

    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;


&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Class&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;Public&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Structure&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;prop&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000;"&gt;Public&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;New&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;propSet&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;propName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;)
        &lt;SPAN style="color: #ff0000;"&gt;Me&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;propSet&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;propSet&lt;/SPAN&gt;
        &lt;SPAN style="color: #ff0000;"&gt;Me&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;propName&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;propName&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000;"&gt;Public&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;propSet&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000;"&gt;Public&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;propName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Structure&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 25 Oct 2020 14:27:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-export/m-p/9823074#M56875</guid>
      <dc:creator>JelteDeJong</dc:creator>
      <dc:date>2020-10-25T14:27:33Z</dc:date>
    </item>
  </channel>
</rss>

