Is there something I should be doing in my macro to release some
SolidWorks items that stay open? I've written a lot of macros and
never had this problem. Any help would be appreciated.
I'm running SolidWorks 2009 SP4.1, Windows Vista Business SP 2.0
Thanks.
I'm just a beginner in macros/API. I would like to ask as why you have
to exist the SW. Also I believe that apart from SW, there are few more
processes which run along with SW (like SolidWorksLicTemp.001,
SolidWorksLicensing.exe. etc.) and they might not be getting closed
after you exist SW and can be the reason for the message.
Deepak Gupta
SW2009 SP4.1
SW2007 SP5.0
http://gupta9665.wordpress.com/
"Please consider the environment before printing this email."
If you run this exemple on your machine does the problem persist?
There is a process running called hpmup083.bin that stays on after I
print with the macro. I think I will investigate what is happening
when I print. Below is the command I'm using. Is there a better one
I should be using?
If CheckBoxPrint Then
Dim p As Integer
Dim iPrintCopies As Integer
iPrintCopies = TextBoxCopies.Text
For p = 1 To iPrintCopies
Document.PrintDirect
Next p
End If
Thanks.