I am generating an Excel report from the application in C#. I would like to open the Excel file for the user to view it and may be modify it later.
However, when the user closes the Excel application, the process EXCEL.EXE is still running as a process and can be seen in the TaskManager.
I was looking in the forums and it seems we need to release all the the object referenced by Excel through ReleaseComObject(object).
However, I donot want to close all the objects programmatically but rather I would like to give this control to the user. So, when the user closes the Excel file, is it possible that I can close or release all the objects referenced by Excel.
Any advice/ pointers to solve the problem in this direction would help me a lot.
Thanks
