Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have created an addin using VSTO 2010 as shown here where I have explained the issue.Uninstalling the custom Excel Addin is not removed from the Addin tab in MS Excel.[^]
The code snippet is as shown below. After doing this , still the addin is not removed from the addin tab. I posted in several forums and i dint get any solution and still in the analysis process only. How can I achieve this. The addin is still not removed from the addin tab. I this the problem with VSTO???

C#
private void ThisAddin_Shutdown(object sender,System.EventArgs e)
{
   var temp = this.Application.AddIns2.get_Item(1);
   temp.Installed = false;
}
Posted

1 solution

 
Share this answer
 
Comments
Roopini Nagaraj 25-Nov-13 20:53pm    
Hi Maciej,
This seems like not to solve the issue i have...
This is something else. VSTO addin is removed from add/remove programs when i uninstall using the msi, but not from the Addin tab in MS office.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900