Tag Archives: Settings

There are many reasons for improving visibility in SolidWorks, for example if you wear glasses or if you’re giving a presentation in SolidWorks.  As a Certified SolidWorks Instructor, I use the following settings that I am recommending to you.

My recommended SolidWorks settings are:
Set larger icons for easier identification under Tools/Customize/Toolbar Tab, select the Option Large icons.

Make your previews pop on screen, as the default yellow can be hard to see, from Tools/Options/Colors> Temporary graphics, select the color:

When using Shaded with edges display mode, know at a glance if the faces of a model are tangent by adjusting Tools/Options/Display/Selection: Part/Assembly tangent edge display, select the option As Phantom.

My recommended Windows 7 Settings:
From a Right Click on the Windows Desktop, you can select ‘Screen Resolution’, and the resolution can be adjusted to your preference.  However more importantly on this same dialog, there is another option, called ‘Make text and other items larger or smaller’; that allows you to adjust the scale of the screen fonts.  So for Windows and every program in Windows, all text fonts shown for menu’s and pull down’s will be larger regardless of your screen resolution.

To make your mouse cursor stand out I recommend making it larger and black, find this setting in
Control Panel\Ease of Access\Ease of Access Center\Make the mouse easier to use; or from the Mouse Properties Pointers Tab.

And finally make it clear when selecting dialog box items through the Control Panel/Appearances and Personalization/Change window colors and metrics, Change the colors for both ‘Selected Items’, for the current Selection, and ‘3D Objects’ for the parent selection.

Posted in Tech Tips | Tagged , , |

Some document property settings are options users might want to tweak frequently but don’t have a way to add a button to a toolbar because the setting doesn’t have a predefined button. If the setting is accessible to the SolidWorks API then a macro can be written and a Macro Button can be added to a toolbar. This is much faster than the repetitive click sequence of Tools > Options > Settings > Document Properties.

A good example is setting the graphics quality of a part file. Models from other users often have their graphics quality set to the preference of the original file author. This setting can be adjusted to something more appropriate for its current usage. This is typically accessed by selecting Tools > Options > Document Properties > Image Quality, move the appropriate slider to the desired value and then select OK. This particular setting is exposed to the SolidWorks API so creating a button for a simple macro could save some clicks over time:

Dim swApp As SldWorks.SldWorks
Dim swModel As SldWorks.ModelDoc2
Sub main()
Set swApp = Application.SldWorks
Set swModel = swApp.ActiveDoc
swModel.SetTessellationQuality (0)
swModel.GraphicsRedraw2
End Sub

Notice the SetTessellationQuality method has a value of zero which is the lowest possible value. The number can be between 0 and 100 and indicates the quality of tessellation to use for a part. A higher value will result in finer tessellation which may or may not be desirable. Higher tessellation may look better but is also more demanding on the graphics card. For more information on other possible usages be sure to check the SolidWorks API help for SetTessellationQuality.

Once a macro has been created and saved as an SWP file it’s just a matter of mapping a button at the desired toolbar location.

- Right click on the CommandManager, select Customize and then select the Commands tab.

- Navigate to the Macro section and select the New Macro Button icon.

 

 

 

 

 

 

 

- Drag and drop the icon to the desired location on an existing toolbar and map the button to the SWP file location.

 

 

 

 

 

 

 

 

 

 

 

 

 

There is also an optional ability to add a custom icon image if multiple macro buttons are added.

 

 

Posted in Tech Tips | Tagged , , |

Working with large assemblies in Enterprise PDM means getting many files you really don’t need or want to check out. The typical workflow is to just check out the files you want to modify and the rest of the sub-assemblies and components are loaded as reference on a read-only basis. This workflow approach eliminates the creation of file versions that are equal to each other. However, when you close the top level assembly there may be a series of prompts to save these read-only files. This can become time consuming and annoying to dismiss.

 

 

 

 

 

 

 

There is a setting within the System Options to bypass the prompts. Select Tools > Options > System Options > External References and enable ‘Don’t prompt to save read-only referenced documents (discard changes)’. This will bypass the multitude of prompts and allow you to only get prompted to save the files you’ve checked out and need to save.

Posted in Tech Tips | Tagged , |

If you have ever used the Shortcut Toolbar during the SolidWorks modeling process (toolbar that appears when you press the ‘S’ key) you have probably wanted to customize this toolbar with the functions that you use most often.  This typically involved going into sketch, part, assembly, or drawing mode so you could then customize and add the appropriate tools to your toolbar.  Starting with SolidWorks 2013 you can customize the toolbar by going to Tools > Customize then choose the “Shortcut Bar” tab and apply your changes to each of the 4 different Shortcut Toolbars by clicking on their corresponding icons.

 

Posted in Tech Tips | Tagged , |

Switching serial numbers is a three-part process that in most cases does not require re-installation of the software:

1.  If you are using a stand-alone license of SolidWorks you will need to deactivate your current seat before modifying your installation.  Open SolidWorks and go to Help > Transfer Licenses and follow the wizard to remove your activation.  Installations with a network license do not have to do this step.

2.  On Windows Vista, 7, and 8 go to the “Control Panel” and under “Programs and Features” right-click on the SoldiWorks entry and choose “Change.”  On XP use “Add/Remove Programs.”

3.  The Installation Manager will appear and you will choose “Modify the individual installation” and hit “Next.”

Afterward you will be given the chance to replace your serial number and finish modifying the installation.

If your software was installed using an administrative image you will not be able to modify your installation with this process.  Please contact your company SolidWorks administrator for their preferred instructions.

Posted in Tech Tips | Tagged , |