How to close a secondary Feature Manager window, Solidworks 2004
How to close a secondary Feature Manager window, Solidworks 2004
(OP)
When I work in an assembly, view the mates of a specific part, edit one of the mates, a new Design manager window opens beneath the original one. How is this 2nd window closed?






RE: How to close a secondary Feature Manager window, Solidworks 2004
"I think there is a world market for maybe five computers."
Thomas Watson, chairman of IBM, 1943.
Have you read FAQ731-376 to make the best use of Eng-Tips Forums?
RE: How to close a secondary Feature Manager window, Solidworks 2004
RE: How to close a secondary Feature Manager window, Solidworks 2004
CODE
Set swApp = CreateObject("SldWorks.Application")
Set Part = swApp.ActiveDoc
SplitterPosition = Part.FeatureManagerSplitterPosition
If SplitterPosition = 1 Then
toggle = 0.5
Else: toggle = 1
End If
Part.FeatureManagerSplitterPosition = toggle
End Sub