Hi to all,
I create an Excel process and fill an array, than close the Excel process. This works fine with small Excel tables having about 850 rows.
However, using Excel tables with up to 1500 rows it fails, that means the Excel process does not quit.
The method involved keeps in a wait state because the EXCEL.EXE process is still alive.
The creation of the Excel process goes like this:
loExcel = CREATEOBJECT("excel.application")
loExcel.Workbooks.Open(gcSourceFile)
And to closing the process like this:
loExcel.Workbooks.Close()
loExcel.Quit()
Has anyone an ideas how to fix that?
Any suggestions are appreciated.
Regards, Klaus
I create an Excel process and fill an array, than close the Excel process. This works fine with small Excel tables having about 850 rows.
However, using Excel tables with up to 1500 rows it fails, that means the Excel process does not quit.
The method involved keeps in a wait state because the EXCEL.EXE process is still alive.
The creation of the Excel process goes like this:
loExcel = CREATEOBJECT("excel.application")
loExcel.Workbooks.Open(gcSourceFile)
And to closing the process like this:
loExcel.Workbooks.Close()
loExcel.Quit()
Has anyone an ideas how to fix that?
Any suggestions are appreciated.
Regards, Klaus