Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I was wondering if anyone could help me out. I'd like to remove a custom addin that I've added from the list of available addins from Excel 2003. I know Excel will complain the next time it opens that the addin no longer exists but I'd like to prevent that from happening. Thanks, Ryan |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Uninstall the add-in first, then use RegEdit to find any leftover entries
and delete them. On my machine (Windows ME), they are in either of the following 2 registry hives: [HKEY_CURRENT_USER\Software\Microsoft\Office\9.0\Ex cel\Options] [HKEY_CURRENT_USER\Software\Microsoft\Office\9.0\Ex cel\Add-in Manager] In the Options part, you will see entries similar to the form: Open = "C:\My Documents\My Add-in.xla" I think later versions of Windows or Excel may have them inside an INI file somewhere. -- Regards, Bill Renaud |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Bill. Do you know if you can still have the addin enabled while
having it not show up in the addins list? I have an audit addin that tracks excel changes however, I don't want anyone disabling it. As a last resort, I guess I could use a Environ("USERNAME") to remove the addin only for certain people. Thanks, Ryan "Bill Renaud" wrote: Uninstall the add-in first, then use RegEdit to find any leftover entries and delete them. On my machine (Windows ME), they are in either of the following 2 registry hives: [HKEY_CURRENT_USER\Software\Microsoft\Office\9.0\Ex cel\Options] [HKEY_CURRENT_USER\Software\Microsoft\Office\9.0\Ex cel\Add-in Manager] In the Options part, you will see entries similar to the form: Open = "C:\My Documents\My Add-in.xla" I think later versions of Windows or Excel may have them inside an INI file somewhere. -- Regards, Bill Renaud |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
<<Do you know if you can still have the addin enabled while having it not
show up in the addins list? The add-in file will still be available on your computer, but it is no longer "installed". To use it again, the user will have to install it via the Tools|Add-ins command and dialog box. Maybe I'm not understanding your question correctly. Do you mean that you simply want the add-in not to load anymore, but remain available for future use? Then simply uncheck the add-in in the add-ins dialog box. It should unload from memory and then not load the next time Excel is started. If you want Excel to look like it was never loaded in the first place (does not appear in the add-ins dialog box), then uncheck the add-in to un-install it, exit Excel, and remove the entries from the Windows Registry, like I mentioned previously. -- Regards, Bill Renaud |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry Bill for not explaining correctly.
I'd like to have the audit addin enabled, but not show up in the available addins list because I don't want the user to disable auditing on a spreadsheet. So I either have to get it not to show up in the list or I have to run the uninstall only for admin users. Thanks, Ryan "Bill Renaud" wrote: <<Do you know if you can still have the addin enabled while having it not show up in the addins list? The add-in file will still be available on your computer, but it is no longer "installed". To use it again, the user will have to install it via the Tools|Add-ins command and dialog box. Maybe I'm not understanding your question correctly. Do you mean that you simply want the add-in not to load anymore, but remain available for future use? Then simply uncheck the add-in in the add-ins dialog box. It should unload from memory and then not load the next time Excel is started. If you want Excel to look like it was never loaded in the first place (does not appear in the add-ins dialog box), then uncheck the add-in to un-install it, exit Excel, and remove the entries from the Windows Registry, like I mentioned previously. -- Regards, Bill Renaud |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Removing an Addin from the Tools Addin list. | Excel Programming | |||
Addins - Calling an addin function from within VBA code | Excel Programming | |||
force addins.add to change folder for an addin | Excel Programming | |||
Addins - Is it necessary to duplicate changes in both the VBAProject AND the Addin | Excel Programming | |||
Removing an addin from the addin's list dialog | Excel Programming |