I am building a program in C# that uses the SolidWorks API.
When I create a new instance of SolidWorks with the command:
sldWrks = (SldWorks)Activator.CreateInstance(Type.GetTypeFromProgID("SldWorks.Application"));
the application is loaded but the add-ins are not.
Specifically, the add-in I am interested in for this program is FeatureWorks.
How can I get SolidWorks to start with the add-ins active?
Do I need to set the options in some text file in the SolidWorks installation folder or perhaps modify the registry keys?
You have to load it with the call:
Here's the documentation from SolidWorks.
Here's how I turned on the PDM Add-in. I'm sure it would be similar to FeatureWorks. Here was using a C# Windows Forms app (hence the MessageBox calls). Hopefully this gives you enough for you to figure out the rest.