Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
The sample code I found below uninstalls an Excel add-in but leaves it in the list of available Add-ins. Im looking for a script to "completely" remove the Excel addin (tidy is nice!). I need to do this across a range of users with Office 2003 & 2007 so I was wanting to reference Excel objects rather than Registry Keys which vary depending on the Office Version. Does anyone know if there is code to "completely" remove an Add-in? Kind Regards Charlie.B Dim oXL Dim crAddin on error resume next Set oXL = CreateObject("Excel.Application") for i = 1 to oXL.Addins.Count Set crAddin = oXL.Addins.item(i) If crAddin.Name = "xpaddin.xla" then crAddin.Installed = False End If Next oXL.Quit Set oXL = Nothing |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to completely remove duplicate rows in vba | Excel Programming | |||
Remove Addin | Excel Discussion (Misc queries) | |||
How can I remove the Excel COM addin from the Excel program? | Excel Programming | |||
how to completely remove an add-in? | Excel Programming | |||
Remove Excel AddIn from AddIn List !! Help | Excel Programming |