Skip to main content

Fixing the inconsistent selections in the SOLIDWORKS macro

Symptoms

SOLIDWORKS macro was recorded by Macro Recording Tool and requires some selections to be made (usually for feature creation or mating). When running the macro the selection may fail or different object is selected which is causing the macro misbehavior.

Cause

Usually macro recording is using the IModelDocExtension::SelectByID2 SOLIDWORKS API method to capture the selection. This method may use temporarily names (like sketch segment names) or coordinates for selection which might not be consistent across different models or view orientations.

Recorded macro line to select arc in the sketch by name{ width=500 }

Resolution

Update the selection method. Refer the Selection article for detailed guide.