PMP Installer
PMP Installer
(OP)
Hi everyone,
Can someone point me the right direction? I can make an PMP from the wizard and do whatever I want to but I can't install on other computers. and installing visual and compiling on every computer doesn't seems a good thing. If someone could change the wizard and include the installer it will be great. Especially in C# but vb.net is fine either.
Thanks
Emerson
Can someone point me the right direction? I can make an PMP from the wizard and do whatever I want to but I can't install on other computers. and installing visual and compiling on every computer doesn't seems a good thing. If someone could change the wizard and include the installer it will be great. Especially in C# but vb.net is fine either.
Thanks
Emerson






RE: PMP Installer
Scott Baugh, CSWP
FAQ731-376: Eng-Tips.com Forum Policieswww.superATV.com
www.scottjbaugh.com
RE: PMP Installer
RE: PMP Installer
Anything that Solidworks has done in the coding of the install of SW to control the PMP, is just that. you will have to turn in a Enhancement Request for your idea to be considered within the customer portal of Solidworks. Then other people are going to have to agree with you and turn in the same issue. So without good clarification of what you want or what your trying to do there is little anyone can do, but even more so if you want the coding changed inside of Solidworks and the installation of Solidworks to be changed to fit your needs.
Regards,
Scott Baugh, CSWP
FAQ731-376: Eng-Tips.com Forum Policieswww.superATV.com
www.scottjbaugh.com
RE: PMP Installer
I want to make an Add-in using the wizard like in using the SolidWorks C# Add-in Template and I can do Whatever I want using the API , but i Have a hard time to reuse it in another computer, the only way I can do it is installing visual studio and then run the program. What I want is a installer for my Add-in or a step by step explain how can I manually install it in other computers. If someone could change the wizard and include the installer it will be great, everybody could reuse the wizard with the installer.
Hope this clarify the question.
And thanks in advance.
RE: PMP Installer
I hope this helps,
Scott Baugh, CSWP
FAQ731-376: Eng-Tips.com Forum Policieswww.superATV.com
www.scottjbaugh.com
RE: PMP Installer
RE: PMP Installer
Kind regards,
Scott Baugh, CSWP
FAQ731-376: Eng-Tips.com Forum Policieswww.superATV.com
www.scottjbaugh.com
RE: PMP Installer
http://help.solidworks.com/2013/English/api/sldworksapiprogguide/Miscellaneous/Create_Setup_Project_to_Distribute_SolidWorks_Add-in.htm?id=9753603a1c4e4e04860ff7b2774589c0
Eric
RE: PMP Installer
As fart as I'm aware, there is no "Property Manage Page" wizard. Do you mean the Property Tab Builder?
http://help.solidworks.com/2014/english/solidworks...
Are you trying to install this on computers which don't have SolidWorks installed? And if so, why?
RE: PMP Installer
You can see the picture attached. In this case is a Macro to review the code or to saveas some part or assembly to reuse in other project. The drop box are automatic filled with the folder names in the server. It's really cool.
And I Did make it work.
What I did was copy the files from the folder Release to the user folder of every computer and register it using command lines, and to make it simple I use sBaugh sugestion with a .bat file
content of file is.
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\SolidWorks\AddIns\{255b57fa-fd0a-419a-bd60-6cce2f4e5de1}" /v "(Padrão)" /t REG_DWORD /d 1
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\SolidWorks\AddIns\{255b57fa-fd0a-419a-bd60-6cce2f4e5de1}" /v "Description" /t REG_SZ /d "Kopempack"
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\SolidWorks\AddIns\{255b57fa-fd0a-419a-bd60-6cce2f4e5de1}" /v "Title" /t REG_SZ /d "Kopempack"
net use X: \\winserver\Projetos
COPY "X:\_TEMPLATES\AddinFiles\*.*" "C:\Users\" /Y
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\RegAsm.exe C:\Users\SwCSharpKOPEMPACK.dll /tlb /codebase
pause
Some key points for those Who want to do it is to verify witch framework you are using, the file path in the last command changes and make sure the GUID is correct.
Thanks for all.
RE: PMP Installer
Chris, CSWA
SolidWorks 14
SolidWorks Legion