View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] streamaxi@gmail.com is offline
external usenet poster
 
Posts: 16
Default Process will not end from task manager after vba code is over

My friend told me that you have to set object to nothing in reverse
order so that is what I did.

Regarding closing the object, I tried .close .quit .exit .flush
(nothing worked) This application is Avaya CMS Supervisor R13 used by
BPO/Call Center/ITES industries.

The issue is still unresolved.

Jim Thomlinson wrote:
I am not familiar with that app but it sould be something like
cvsApp.Close

Note that you must close things in the proper order. For example you may
need to close the connections prior to closing the app otherwise the
processes may get stuck open becuse of the active connection.
--
HTH...

Jim Thomlinson


" wrote:

How do I close the objects? sorry but I am not good at vba programming.

Jim Thomlinson wrote:
Close the objects prior to setting them to nothing. Setting the objects to
nothing just detaches your app from the processes. It does not terminate the
process...
--
HTH...

Jim Thomlinson


" wrote:

There is one process (acsSRV.exe) in the Task Manager that does not
want to end even if set to nothing.
Any ideas???

Dim cvsApp As Object
Dim cvsConn As Object
Dim cvsSrv As Object
Dim Rep As Object


Dim Info As Object, Log As Object, b As Object


Set cvsApp = CreateObject("ACSUP.cvsApplication")
Set cvsConn = CreateObject("ACSCN.cvsConnection")
Set cvsSrv = CreateObject("ACSUPSRV.cvsServer")
Set Rep = CreateObject("ACSREP.cvsReport")


..
..
..
..
My code
..
..
..
..


Set b = Nothing
Set Log = Nothing
Set Info = Nothing
Set Rep = Nothing
Set cvsSrv = Nothing
Set cvsConn = Nothing
Set cvsApp = Nothing