- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsWe're making use of MS Excel within a .NET C# application.
We have an issue whereby on closing the form / application which makes use of this - the instance of Excel is not cleared and still can be seen within 'Task Manager'.
private Excel.Application oXL;
private Excel.Workbook oWB;
private Excel.Worksheet oSheet;
We're making use of code like :
oXL = new Excel.ApplicationClass();
oWB = oXL.Workbooks.Add(xlStr);
oSheet = (Excel.Worksheet) sheets.get_Item(1);
On closing of the form we're using code such as :
if (oSheet != null)
{
System.Runtime.InteropServ
}
if (oWB != null)
{
System.Runtime.InteropServ
}
if (oXL != null)
{
System.Runtime.InteropServ
}
However hard we try - we can't seem to get 'EXCEL.EXE' to be removed from the 'Task Manager'
Previously when we had a problem with MS Word we resolved it in a similar to above. This doesn't seem to work for EXCEL mind you. :(
Can anyone help us out with this one ?
Thanks in advance
Steve
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: bacon7181Posted on 2003-10-14 at 10:14:04ID: 9548671
Have you called Excel's Quit() method?
oXL.Quit()