Hi all,
I am trying to add excel add-ins programmatically through C++ code.
It is srunning fine on xp or lower OS. But it is giving an 'Unhandled exception' on Vista.
.
.
m_xlAddins = xl.GetAddIns();
if(xl.GetVersion()=="12.0") //if it is office 2007 then only install it.
{
m_xlAddin = m_xlAddins.Add(strAddin,covTrue);
m_xlAddin.SetInstalled(TRUE); //---> giving an error on vista.
}
.
.
Help please..
I am trying to add excel add-ins programmatically through C++ code.
It is srunning fine on xp or lower OS. But it is giving an 'Unhandled exception' on Vista.
.
.
m_xlAddins = xl.GetAddIns();
if(xl.GetVersion()=="12.0") //if it is office 2007 then only install it.
{
m_xlAddin = m_xlAddins.Add(strAddin,covTrue);
m_xlAddin.SetInstalled(TRUE); //---> giving an error on vista.
}
.
.
Help please..