Display/Selection
Display/Selection
(OP)
Does anyone have a macro to toggle display/selections or perhaps I missed and icon? I usually want "select hidden edges" off but sometimes I need to either select a hidden line in wireframe or in shaded mode. Attached picture to better explain what I want to toggle.
Thanks
Thanks
Certified SolidWorks Associate
SW2009 X64 SP 1.0
Dell Precision T5400
Nvidia Quadro FX 5600
Xeon 2.5GHz Quad Core, 4GB RAM
XP Pro X64 SP2.0






RE: Display/Selection
RE: Display/Selection
Thanks
Certified SolidWorks Associate
SW2009 X64 SP 5.1
Dell Precision T5500
Nvidia Quadro 4000
Xeon 2.27GHz Quad Core, 6GB RAM
XP Pro X64 SP2.0
RE: Display/Selection
Certified SolidWorks Associate
SW2009 X64 SP 5.1
Dell Precision T5500
Nvidia Quadro 4000
Xeon 2.27GHz Quad Core, 6GB RAM
XP Pro X64 SP2.0
RE: Display/Selection
CODE --> vba
Sub ToggleSelInWireframe() Dim swApp As SldWorks.SldWorks Set swApp = Application.SldWorks swApp.SetUserPreferenceToggle swEdgesHiddenEdgeSelectionInWireframe, _ Not CBool(swApp.GetUserPreferenceToggle(swEdgesHiddenEdgeSelectionInWireframe) + 0) End Sub Sub ToggleSelInShaded() Dim swApp As SldWorks.SldWorks Set swApp = Application.SldWorks swApp.SetUserPreferenceToggle swEdgesHiddenEdgeSelectionInHLR, _ Not CBool(swApp.GetUserPreferenceToggle(swEdgesHiddenEdgeSelectionInHLR) + 0) End Sub-handleman, CSWP (The new, easy test)
RE: Display/Selection
Certified SolidWorks Associate
SW2009 X64 SP 5.1
Dell Precision T5500
Nvidia Quadro 4000
Xeon 2.27GHz Quad Core, 6GB RAM
XP Pro X64 SP2.0
RE: Display/Selection
-handleman, CSWP (The new, easy test)
RE: Display/Selection
Certified SolidWorks Associate
SW2009 X64 SP 5.1
Dell Precision T5500
Nvidia Quadro 4000
Xeon 2.27GHz Quad Core, 6GB RAM
XP Pro X64 SP2.0