View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
zino[_2_] zino[_2_] is offline
external usenet poster
 
Posts: 4
Default simple excel process not killed

the follwoing procedure create a simple Excel object and try to close it, but
the Excel process still in memory


public sub createExcel
Dim excelApp As Excel.Application
excelApp = New Excel.Application
excelApp.Application.Quit() ' I tried excelApp.Quit() and did not work
excelApp = Nothing
End sub

how can I solve it?