hello
i want that one of my column BOM points on a concatenation of 2custom properties
to do so manually
i select the column, the i click on equation, i write
`custoprop1`" "`custoprop2`
but i can t do that by using API
here is my fucntion
Sub chanCustomPropertyBOM(swtable As TableAnnotation,DescriptionName As String, BomColumnID As Integer)
Dim swSelMgr As SldWorks.SelectionMgr
Dim swBomTable As SldWorks.BomTableAnnotation
Dim i As Long
Dim test As String
Set swBomTable = swtable
Dim toto As String
toto = "`Description Debit fr`" + """ """ + "`Description Debit2`"
swBomTable.SetColumnCustomProperty BomColumnID, toto
End Sub
the column is updated
but"`custoprop1`" "`custoprop2`" is written instead of
`custoprop1`" "`custoprop2`
any idea
SolidworksApi macros
i want that one of my column BOM points on a concatenation of 2custom properties
to do so manually
i select the column, the i click on equation, i write
`custoprop1`" "`custoprop2`
but i can t do that by using API
here is my fucntion
Sub chanCustomPropertyBOM(swtable As TableAnnotation,DescriptionName As String, BomColumnID As Integer)
Dim swSelMgr As SldWorks.SelectionMgr
Dim swBomTable As SldWorks.BomTableAnnotation
Dim i As Long
Dim test As String
Set swBomTable = swtable
Dim toto As String
toto = "`Description Debit fr`" + """ """ + "`Description Debit2`"
swBomTable.SetColumnCustomProperty BomColumnID, toto
End Sub
the column is updated
but"`custoprop1`" "`custoprop2`" is written instead of
`custoprop1`" "`custoprop2`
any idea
SolidworksApi macros