Hello everyone!
I tried to adapt D.Roger's macro, but the "combine" function still doesn't run:
'Search in the feature manager of the part to be subtracted (it took me a while to understand where the name "Stock" came from: press CTRL G in the execution window to bring up the list of names and types of each feature!)
Set Feature = Part.FirstFeature
Dim Piece1 As String
While Not Feature Is Nothing
FeatureName = Feature.Name
If Feature.GetTypeName2 = "Stock" Then
Piece1 = FeatureName
End If
Set Feature = Feature.GetNextFeature()
Wend
Main Body Selection
boolstatus = Part.Extension.SelectByID2("Removed mat.-Extru.3", "SOLIDBODY", 0, 0, 0, False, 1, Nothing, 0)
'Selection of the share to be subtracted
boolstatus = Part.Extension.SelectByID2(Piece1, "BODYFEATURE", 0, 0, 0, True, 2, Nothing, 0)
'Combining bodies
Set myFeature = Part.FeatureManager.InsertCombineFeature(15902, Nothing, Nothing)
The 2 pieces are well selected, but the last line which should perform the subtraction of the bodies remains inactive.?!
I should be able to select the volume bodies of the part to be subtracted but without taking the one of the main body, I tried with "SolidBodyFolder"... but it doesn't work either!
I'm sure there's not much, but my knowledge of VBA isn't enough to solve this sticking point.
If anyone can guide me on a possible solution?!
Thank you.
lyncoa_20171010.gif