Hello,
I am using Excel 2002 in my code. Where I open, load all the necessary data and then close Excel from VC++ code. I am using following piece of code to finally quiting Excel.
Excel::_ApplicationPtr m_ptrExcel;
if (m_ptrExcel)
{
m_ptrExcel->Quit();
}
m_ptrWrkbkFA = 0;
m_ptrWrkshEDV = 0;
m_ptrRangeCelsEDV = 0;
m_ptrExcel = 0;
Problem: After execution of above line Excel is closed physicall and goes away from Applications List of Task Manager. But, I can still see Excel.exe running under process list of task manager.
Could you please help me, what should i do to remove it from the process list as soon as it is removed from Application List.
Thanks in advance
Sheeu Tech