Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Exel.Exe lingering in Task Manager | Excel Programming | |||
Printing leaves EXCEL.EXE process in Task Manager | Excel Discussion (Misc queries) | |||
excel.exe is not terminating from task manager | Excel Programming | |||
Task Manager and Excel 2003 | Excel Discussion (Misc queries) | |||
EXCEL keeps running in task manager | Excel Programming |