Since installing 2006 some macros don't work.
Since installing 2006 some macros don't work.
(OP)
Since installing 2006 some macros don't work. I stepped through and the
problems start right here:
Set swApp = CreateObject("SldWorks.Application")
When I step past this line swApp = nothing.
TIA
problems start right here:
Set swApp = CreateObject("SldWorks.Application")
When I step past this line swApp = nothing.
TIA






RE: Since installing 2006 some macros don't work.
Perhaps you'll get the gist of it from this post. Otherwise, someone who does this stuff can point you more specifically.
Jeff Mowry
www.industrialdesignhaus.com
Reason trumps all. And awe trumps reason.
RE: Since installing 2006 some macros don't work.
Did you use a version-specific folder such as "SolidWorks2006" and "SolidWorksData2006" when installing? Do you still have SW 2005 installed without being installed in a specific directory? If not, this could be causing the problem that requires the redirect.
Jeff Mowry
www.industrialdesignhaus.com
Reason trumps all. And awe trumps reason.
RE: Since installing 2006 some macros don't work.
www.engtran.com
www.niswug.org
RE: Since installing 2006 some macros don't work.
Try replacing:
Set swApp = CreateObject("SldWorks.Application")
with:
Set swApp = Application.Sldworks
and see if that helps.
RE: Since installing 2006 some macros don't work.
www.engtran.com
www.niswug.org
RE: Since installing 2006 some macros don't work.
RE: Since installing 2006 some macros don't work.
www.engtran.com
www.niswug.org
RE: Since installing 2006 some macros don't work.