How did you learn SolidWorks?

In a previous article, I recently asked for the opinions of others about the best methods to train new employees for SolidWorks.  So far, the response is split between “on the job training with a mentor” and “VAR taught introductory courses”.  This is a bit of a surprize given the emphasis placed on VAR based training these days.   Do others question of the value of VAR training?  Is it effective?  Or, is VAR training just not worth the costs or the time away from work?  My own experience is that VAR training classes do not necessarily give the best benefit to new users.

The responses made me curious about something else.  How did current SolidWorks users learn the software?

How did you first learn the SolidWorks application? (Pick the primary method)

View Results

Loading ... Loading ...

Value of training options for SolidWorks

For me, SolidWorks was a fairly easy application to learn.  In fact, I am self-taught for the most part.  I learned it progressively over a couple of months because it was necessary for my jobs and I had to do it.  That was over a decade ago.  These days, that may not be an acceptable option.  Users often need to hit the ground running.   Not every situation is the same.  Even still, I’ve created a new poll to get the opinions of others.  Imagine you have a new hirer at your company for a position that required the use of SolidWorks, but they don’t have experience with the software.  How would you handle that?

What is the best way to learn SolidWorks for new users just starting a new job?

View Results

Loading ... Loading ...

SolidWorks Rollout Event

In what might be considered the premier SoildWorks Rollout event in the San Francisco Bay Area, Hawk Ridge Systems kicked off their rollout tour for SolidWorks 2010 at the Hiller Aviation Museum.  Now, I don’t normally rave Presentersabout VARs doing anything, but this event stands out.  Where other VARs are holding events at their offices or even just doing webinars, Hawk Ridge Systems went all out.  Despite the first major storm to hit California in a few years*, attendance to this event was good.

The topics covered during the event included many of the improvements in Solidworks 2010, from predictability and consistancy to the new Dimensions Palette.  Also included in the event were fairly in depth presentations for 3DVia, Enterprise PDM and SolidWorks Simulator.  For the first time ever, I’ve developed an appreciation for the functionality within 3DVia.  I’m still not the audience to which this application should be pitched, but hey, it looks cool.

On top of everything else, lunch from Pasta Pomodoro was an unexpected delight.  I’m SolidWorks Rolloutalso happy about being able to take a free tour of the Hiller Aviation Museum, which has been on my todo list for a long time.  The museum was a little smaller than I expected, though every cubic inch has some aeroplane or other sky contraption and wonderment.  I bought the t-shirt (as I always do).  One complaint I have about using this location for events like SolidWorks Rollouts is that the museum remained open during the presentations.  Once in awhile, arriving patrons did get a bit noisy which made it hard to focus on the presenter.

As usual, sponsors did get their chance to speak.  Fortunately, they kept their announcements short and sweet.  Taken on the whole, this was an event that stands out as being well above par (or below par if you are a golfer).

*A major storm for California consists of an amount of rain and wind that other portions of the planet may consider timid.  We had a lot of slowed traffic and neighborhood debris from trees and turned-over trash cans.  That’s about it.  But it’s enough to cause people to change their plans.

Getting Errors when using downloaded Macros?

Errors when running downloaded SolidWorks macros (Visual Basic 6) can be caused by many different issues, depending on the macro and which version of SolidWorks being used.  Here are some general points that may help.

Reference Libraries
Check reference libraries associated with the macro. These can be accessed by opening the macro through SolidWorks API editor (edit macro function), then going to pulldown Tools>Reference Libraries. If any of the listed libraries have the word MISSING in front of them, remove their check mark. You may need to replace it with a similarly named reference library that is included on your system. For example, if “SolidWorks 2008 Object Library” is missing and you are running SolidWorks 2007, then look for and activate the library named something like “SolidWorks 2007 Object Library”. SolidWorks may be able to do this automatically, but on many computer systems, you will need to manually make this edit, particularly if using a macro made on a version of SolidWorks newer than you are using.

Conversely, errors can be caused by having conflicting libraries loaded at the same time (i.e., having too many libraries).  No errors will appear in the reference library list.  If you are certain the correct library is loaded already, trying removing other SolidWorks related libraries one by one until the issue is resolved.

Also, the correct reference library may not be loaded at all. Research the line of code causing the error to make sure the correct reference library is loaded to support those instructions.

Additionally, if a macro was made on a newer version of SolidWorks than what you are currently using, its instructions may not be supported at all on the system running the older version of SolidWorks. In this case, you will need to find an equivalent API method for the older SolidWorks version, if one exists.

If the macro does not use Forms, a quick way to make sure you are using current reference libraries is to simply cut and paste the complete code from the existing macro file to a new one created fresh on your system. Often, this will fix any mismatched reference libraries, but it might still require research to make sure all the necessary reference libraries are loaded for that macro.

Sub-Modules
When executing the macro, make sure you specify the “Main” sub-module as the starting point. This is the section of code following the line “Sub Main ()”. Most macros are set up with Main as their starting sub-module. This is usually a fix if you are having issues associating your macro with an icon on a Toolbar, assigning a shortcut key, or trying to execute the macro from within another macro.

If the macro does not have a Main sub-module, then you may need to study the macro to discover which sub-module is meant as the starting point.

Copying code from online or plain text source
Sometimes when code appears in plain text, such as in a .txt file or from a forum online, it may not be formatted properly. Some of the lines may be too long for the plain text source, so they are line broken. This will disrupt the code, as SolidWorks API will misunderstand the instructions. When copy and pasting code from a plain text source, make sure to go over the code to insure all the lines are properly reconstructed by removing erroneous line breaks.

Sources for help
If issues are still occuring, contact the author(s), if available. Also, make sure to read over the material and examples provided in the SolidWorks API Help file included with SolidWorks. If those do not completely solve the issue, then search over various online forums dedicated to SolidWorks and SolidWorks API support. Many of these forums are listed under Forum Links.  If the search doesn’t resolve the issue, then post a question on those forums detailing the issue and requesting help from other SolidWorks users. You may also contact your VAR, as the issue you are having may actually be a bug or known issue in the SolidWorks API system itself.