This content has been marked as final.
Show 2 replies
-
Re: Move (up/dowan) cut list folder in feature manager
Łukasz Dłucik Nov 13, 2015 7:57 AM (in response to Łukasz Dłucik)In VBA, I can move items from folder to other folder, but I cant move folder up or down
VBA:
Sub main()
Dim swModel As ModelDoc2
Dim swApp As SldWorks.SldWorks
Dim featMgr As FeatureManager
Dim bStatus As Boolean
Set swApp = Application.SldWorks
Set swModel = swApp.ActiveDoc
Set featMgr = swModel.FeatureManager
bStatus = featMgr.MoveToFolder("Element listy elementów ciętych7", "Dodanie-wyciągnięcie3", True)
Debug.Print bStatus
End Sub
-
Re: Move (up/dowan) cut list folder in feature manager
Deepak Gupta Nov 13, 2015 12:01 PM (in response to Łukasz Dłucik)I don't think you can move cut-list folders up or down., You may be able to move folders up and down below origin.