Hello everyone,
I need to repair solidworks 2018 SP1, but I have a problem I can't find my cd1/2, the one where there is the directory "PreReqs\VCRedist12" with the "Visual C++ 2013 and Visual C++ Redistributable" pack.
So it's blocking me from repairing, someone would have an idea to solve the problem.
I tried to download it from Microsoft, but the installation didn't give it back.
Thanks in advance
Otherwise if no one has an idea at the moment or an iso of the DVD1/2, I explain a little more my problem which may be solved otherwise.
My problem is at the start of Solidworks, I have an error:
failed to instantiate "swdocumentmgr.swdmclassfactory "
Which appears when starting the SWOOD add-in, I thought it came from SWOOD, but I reinstalled it and it didn't change anything.
I wanted to repair Solidworks, but I'm missing DVD1 which contains the "Visual C++ 2013 and Visual C++ Redistributable" pack
Hello
While doing some research I saw that this term was used in some macros:
'**********************
'Copyright(C) 2022 Xarial Pty Limited
'Reference: https://www.codestack.net/solidworks-document-manager-api/getting-started/create-connection/
'License: https://www.codestack.net/license/
'**********************
Dim swDmClassFactory As SwDocumentMgr.swDmClassFactory
Dim swDmApp As SwDocumentMgr.SwDMApplication
Sub main()
Set swDmClassFactory = CreateObject("SwDocumentMgr.SwDMClassFactory")
If Not swDmClassFactory Is Nothing Then
Set swDmApp = swDmClassFactory.GetApplication(SW_DM_KEY)
Debug.Print swDmApp.GetLatestSupportedFileVersion()
Else
MsgBox "Document Manager SDK is not installed"
End If
End Sub
Is it a call to a method of a library that calls a specific dll, where does this command come from, it is called from somewhere?