[Migrated content. Thread originally posted on 28 February 2011]
I am creating an Excel application from a called .Acu program using:-CREATE Application OF Excel HANDLE IN hExcelApp
I then do various inquires, modifies etc, before saving the output .xls file and exiting.
All this works with no problems, but after closing the application, Task Manager still shows Excel as being present as a process. If I run the program multiple times, I end up with Task manager showing multiple occurrences of Excel present as processes. How do I properly close Excel, once I have finished with the application?
Coding in the program at present is as follows:-
MODIFY hExcelApp @Quit()
destroy hExcelApp
Exit Program.
