Page 1 of 1

How to getting access to and use features in other AddIns

Posted: Thu Aug 25, 2022 9:31 am
by kap
I want to make some automated processes in a add in for solidworks called SigmaTube.

How do i get access to features in add ins?

Re: How to getting access to and use features in other AddIns

Posted: Thu Aug 25, 2022 10:09 am
by josh
You have to ask SigmaTube.

Re: How to getting access to and use features in other AddIns

Posted: Fri Aug 26, 2022 12:48 am
by kap
Okay Josh, I will try

Re: How to getting access to and use features in other AddIns

Posted: Fri Aug 26, 2022 3:01 am
by acmall
You can use ISldWorks.GetAddinObject to access commands in another Add-In but, as Josh has commented SigmaTube would need to expose the commands to allow you to call them.

https://help.solidworks.com/2022/englis ... Redirect=1

https://help.solidworks.com/2022/englis ... dd-ins.htm

Re: How to getting access to and use features in other AddIns

Posted: Fri Aug 26, 2022 12:51 pm
by HerrTick
If you program, you already know that the only publicly available functions are the ones you make public.

Re: How to getting access to and use features in other AddIns

Posted: Fri Aug 26, 2022 1:07 pm
by AlexLachance
HerrTick wrote: Fri Aug 26, 2022 12:51 pm If you program, you already know that the only publicly available functions are the ones you make public.
Most likely someone with limited programming knowledge, sort of like me, that is able to create mini macros and sometimes correct minor programming errors.

Most likely he's never developped something from scratch before and now is trying to.