EditExcelPQM icon indicating copy to clipboard operation
EditExcelPQM copied to clipboard

Unable to fully close Excel - window is closed, but it remains in process manager

Open amalanov opened this issue 3 years ago • 0 comments

In order to close Excel I do the following

    if (this.excel && this.excel.Workbooks.Count !== undefined && this.excel.Workbooks.Count === 0){
        this.logger("All workbooks are closed. Close Excel also.");
        this.getExcel().DisplayAlerts = false;
        this.getExcel().Quit();
        this.excel = undefined;
    }

but it remains in system monitor.

amalanov avatar Aug 11 '20 16:08 amalanov