<?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: Send Components part list To another program with SQL Crystal Database in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3746332#M137028</link>
    <description>&lt;P&gt;Hi d_great_ice,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://forums.autodesk.com/t5/Autodesk-Inventor/filtering-partlist-use-filter-View/m-p/3746331#M457739" target="_blank"&gt;http://forums.autodesk.com/t5/Autodesk-Inventor/filtering-partlist-use-filter-View/m-p/3746331#M457739&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 04 Jan 2013 18:47:37 GMT</pubDate>
    <dc:creator>Curtis_W</dc:creator>
    <dc:date>2013-01-04T18:47:37Z</dc:date>
    <item>
      <title>Send Components part list To another program with SQL Crystal Database</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3379297#M137021</link>
      <description>&lt;P&gt;Can someone tell me an code to make in VBA editor, that read my part list (code, quantity and designition), and appears like this:&lt;/P&gt;&lt;P&gt;Example: Part list contains 5 codes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Read active idw.&lt;BR /&gt;&lt;SPAN&gt;Read code nº1 (msg with code+quantity+designition)&lt;BR /&gt;&lt;SPAN&gt;Read code nº2 (msg with code+quantity+designition)&lt;BR /&gt;&lt;SPAN&gt;Read code nº3 (msg with code+quantity+designition)&lt;BR /&gt;&lt;SPAN&gt;Read code nº4 (msg with code+quantity+designition)&lt;BR /&gt;&lt;SPAN&gt;Read code nº5 (msg with code+quantity+designition)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 13px;"&gt;msg ("Finish")&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 11:02:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3379297#M137021</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-21T11:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Send Components part list To another program with SQL Crystal Database</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3379765#M137022</link>
      <description>&lt;P&gt;Help?&lt;BR /&gt;Its just MsgBox... dont need to connect to SQL database yet... I just want to know how I find each part of the list, 1 by 1... and in each one, appears an message saying the quantity, item number, designation or/and code .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, help &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 14:58:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3379765#M137022</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-21T14:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Send Components part list To another program with SQL Crystal Database</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3380765#M137023</link>
      <description>&lt;P&gt;This method shows going through each row and getting the column with the heading caption. It is only going to work with the first parts list on the active sheet.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;     Dim oDrawDoc As Inventor.DrawingDocument = ThisApplication.ActiveDocument
        Dim oSheet As Sheet = oDrawDoc.ActiveSheet
        Dim oPartsList As PartsList = oSheet.PartsLists.Item(1)
        For Each oRow As PartsListRow In oPartsList.PartsListRows
            Dim RowArray(oPartsList.PartsListColumns.Count - 1) As String
            For I As Integer = 1 To oPartsList.PartsListColumns.Count
                RowArray(I - 1) = oPartsList.PartsListColumns.Item(I).Title &amp;amp; vbTab &amp;amp; oRow.Item(I).Value
            Next
            MsgBox(String.Join(vbLf, RowArray))

        Next&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 01:48:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3380765#M137023</guid>
      <dc:creator>Mike.Wohletz</dc:creator>
      <dc:date>2012-03-22T01:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Send Components part list To another program with SQL Crystal Database</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3382293#M137024</link>
      <description>&lt;P&gt;not working in inventor 2012... -.-"&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 20:51:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3382293#M137024</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-22T20:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Send Components part list To another program with SQL Crystal Database</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3382309#M137025</link>
      <description>&lt;P&gt;It works fine in Inv 2012, how are you trying to use it? What programming environment are you working in?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 21:05:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3382309#M137025</guid>
      <dc:creator>Mike.Wohletz</dc:creator>
      <dc:date>2012-03-22T21:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Send Components part list To another program with SQL Crystal Database</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3382397#M137026</link>
      <description>&lt;DIV&gt;Like this... works! in my default.ivb file!&lt;/DIV&gt;&lt;DIV&gt;Thanks anyway &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; I will try to connect now to SQL Crystal database &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/DIV&gt;&lt;DIV&gt;[ &lt;STRONG&gt;NOTE:&lt;/STRONG&gt; &lt;U&gt;PORTUGAL WINS!&lt;/U&gt; ]&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Sub Part_List()&lt;BR /&gt;Dim i As Integer&lt;BR /&gt;i = 1&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;MsgBox ("Iniciar Teste")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim idwDoc As Inventor.DrawingDocument&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set idwDoc = ThisApplication.ActiveDocument&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oSheet As Sheet&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oSheet = idwDoc.ActiveSheet&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oPartsList As PartsList&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oPartsList = oSheet.PartsLists.Item(1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For Each oRow In oPartsList.PartsListRows&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;&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; For i = 1 To oPartsList.PartsListColumns.Count&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; MsgBox (oPartsList.PartsListColumns.Item(i).Title &amp;amp; vbTab &amp;amp; oRow.Item(i).Value)&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; Next&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;&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; MsgBox ("Terminou")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next oRow&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;End Sub&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Mar 2012 21:50:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3382397#M137026</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-22T21:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Send Components part list To another program with SQL Crystal Database</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3735152#M137027</link>
      <description>&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can help me, how to filtering a part list use view by assembly drawing, with VBA editor or iLOGic code.&lt;/P&gt;&lt;P&gt;there is no class system for filter in partlist class.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;im use autodesk inventor 2010, and get install use ilogic add-ons 2010&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i want to get automation system for my inventor design.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thx.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ihsan Surahman,&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2012 09:47:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3735152#M137027</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-12-13T09:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Send Components part list To another program with SQL Crystal Database</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3746332#M137028</link>
      <description>&lt;P&gt;Hi d_great_ice,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://forums.autodesk.com/t5/Autodesk-Inventor/filtering-partlist-use-filter-View/m-p/3746331#M457739" target="_blank"&gt;http://forums.autodesk.com/t5/Autodesk-Inventor/filtering-partlist-use-filter-View/m-p/3746331#M457739&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jan 2013 18:47:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/send-components-part-list-to-another-program-with-sql-crystal/m-p/3746332#M137028</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2013-01-04T18:47:37Z</dc:date>
    </item>
  </channel>
</rss>

