Preview | SOLIDWORKS USER FORUM
Use your SOLIDWORKS ID or 3DEXPERIENCE ID to log in.
JDJames Dickson02/08/2024
I'm trying to run a macro that will auto turn on all the Force Use Seed Configuration checkboxes in an assembly.
Sub main()
Dim swApp As SldWorks.SldWorks
Dim swModel As SldWorks.ModelDoc2
Dim instance As ILocalSketchPatternFeatureData
Dim value As System.Boolean
instance.ForceUseSeedConfiguration = value
value = instance.ForceUseSeedConfiguration
End Sub
Can someone please let me know what I'm doing