Can I remove Scroll bars in Model window?
Can I remove Scroll bars in Model window?
(OP)
Hello,
Is there a way to remove the scroll bars from the bottom and right of the model window? I never use them and they take up real estate. (I know, I know...its not that much! But every little bit counts!)
Not a big deal, but if anyone knows, I'd appreciate it.
Thanks,
Is there a way to remove the scroll bars from the bottom and right of the model window? I never use them and they take up real estate. (I know, I know...its not that much! But every little bit counts!)
Not a big deal, but if anyone knows, I'd appreciate it.
Thanks,
Craig Sink
Mechanical Engineer
Force Design, Inc.
www.forcedesign.biz






RE: Can I remove Scroll bars in Model window?
Hope this helps you out!
CODE
Dim Part As SldWorks.ModelDoc2
Sub main()
Set swApp = Application.SldWorks
Set Part = swApp.ActiveDoc
If swApp.ActiveDoc Is Nothing Then Exit Sub
swApp.ActiveDoc.ActiveView.FrameState = 0
swApp.ActiveDoc.ActiveView.FrameWidth = 972
swApp.ActiveDoc.ActiveView.FrameHeight = 688
swApp.ActiveDoc.ActiveView.FrameLeft = -7
swApp.ActiveDoc.ActiveView.FrameTop = -8
End Sub
RE: Can I remove Scroll bars in Model window?
SW07 SP2.0
Flores
RE: Can I remove Scroll bars in Model window?
Chris
SolidWorks 06 5.1/PDMWorks 06
AutoCAD 06
ctopher's home (updated 02-10-07)
RE: Can I remove Scroll bars in Model window?
Thanks again,
Craig Sink
Mechanical Engineer
Force Design, Inc.
www.forcedesign.biz