I am creating an Excel Application object by:
In my error handler I have:
When I step through the error handler, I watch the NT Task Manager. I notice that the xlApp.Quit code doesn't really do anything until I click the "Reset" button on the toolbar, even if the code is finished executing. In the "Processes" tab in NT Task Manager, that instance of Excel is still there.
Is there any way to kill the instance of Excel that is created by
via code, without having to reset the module???
Thanking you in advance, Mike K
Code:
Dim xlApp as New Excel.Application, xlWkb as Excel.Workbook
Code:
xlWkb.close false
xlApp.quit
When I step through the error handler, I watch the NT Task Manager. I notice that the xlApp.Quit code doesn't really do anything until I click the "Reset" button on the toolbar, even if the code is finished executing. In the "Processes" tab in NT Task Manager, that instance of Excel is still there.
Is there any way to kill the instance of Excel that is created by
Code:
Dim xlApp as New Excel.Application
Thanking you in advance, Mike K