Community
Inventor Programming - iLogic, Macros, AddIns & Apprentice
Inventor iLogic, Macros, AddIns & Apprentice Forum. Share your knowledge, ask questions, and explore popular Inventor topics related to programming, creating add-ins, macros, working with the API or creating iLogic tools.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Send Components part list To another program with SQL Crystal Database

7 REPLIES 7
SOLVED
Reply
Message 1 of 8
Fredalone
718 Views, 7 Replies

Send Components part list To another program with SQL Crystal Database

Can someone tell me an code to make in VBA editor, that read my part list (code, quantity and designition), and appears like this:

Example: Part list contains 5 codes.

 

Read active idw.
Read code nº1 (msg with code+quantity+designition)
Read code nº2 (msg with code+quantity+designition)
Read code nº3 (msg with code+quantity+designition)
Read code nº4 (msg with code+quantity+designition)
Read code nº5 (msg with code+quantity+designition)

msg ("Finish")

7 REPLIES 7
Message 2 of 8
Fredalone
in reply to: Fredalone

Help?
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 .

 

Please, help 😞

Message 3 of 8
Mike.Wohletz
in reply to: Fredalone

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. 

 

     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 & vbTab & oRow.Item(I).Value
            Next
            MsgBox(String.Join(vbLf, RowArray))

        Next

 

Message 4 of 8
Fredalone
in reply to: Fredalone

not working in inventor 2012... -.-"

Message 5 of 8
Mike.Wohletz
in reply to: Fredalone

It works fine in Inv 2012, how are you trying to use it? What programming environment are you working in?

 

Message 6 of 8
Fredalone
in reply to: Mike.Wohletz

Like this... works! in my default.ivb file!
Thanks anyway 😉 I will try to connect now to SQL Crystal database 😉
[ NOTE: PORTUGAL WINS!
Sub Part_List()
Dim i As Integer
i = 1
 
MsgBox ("Iniciar Teste")
 
        
        Dim idwDoc As Inventor.DrawingDocument
        Set idwDoc = ThisApplication.ActiveDocument
        
        Dim oSheet As Sheet
        Set oSheet = idwDoc.ActiveSheet
        
        Dim oPartsList As PartsList
        Set oPartsList = oSheet.PartsLists.Item(1)
        
        For Each oRow In oPartsList.PartsListRows
                    
            For i = 1 To oPartsList.PartsListColumns.Count
                MsgBox (oPartsList.PartsListColumns.Item(i).Title & vbTab & oRow.Item(i).Value)
            Next
           
            MsgBox ("Terminou")
 
        Next oRow
        
End Sub
Message 7 of 8
d_great_ice
in reply to: Fredalone

Dear,

 

 

Can help me, how to filtering a part list use view by assembly drawing, with VBA editor or iLOGic code.

there is no class system for filter in partlist class.

 

 

im use autodesk inventor 2010, and get install use ilogic add-ons 2010

 

i want to get automation system for my inventor design.

 

Thx.

 

Ihsan Surahman,

Message 8 of 8

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report