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?
|