Eng-Tips is the largest forum for Engineering Professionals on the Internet.

Members share and learn making Eng-Tips Forums the best source of engineering information on the Internet!

  • Congratulations dmapguru on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to close a secondary Feature Manager window, Solidworks 2004

Status
Not open for further replies.

dcornell

Mechanical
Joined
Jan 3, 2005
Messages
6
Location
US
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?
 
Grab the frame that creates the 2nd "window" and drag it either up or down to create a single window.

[green]"I think there is a world market for maybe five computers."[/green]
Thomas Watson, chairman of IBM, 1943.
Have you read faq731-376 to make the best use of Eng-Tips Forums?
 
Thanks for the response. That's what I have been doing. I just thought it was odd and that there should be another way (ie: pressing the Esc key) or something.
 
Copy and paste the following code into an empty macro file. Then assign a shortcut key or create an icon and put it on a toolbar, this will toggle the split Feature Manager


Code:
Sub main()



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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top