Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Remove add in from inactive list excel 2007

Hi group

How do I with vba remove add in from inactive list of add ins.
I have uninstalled the add in but it still appears in inactive list

Cheers
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Remove add in from inactive list excel 2007

If the addin is in the default addins folder remove the addin (don't just
rename it).

If the addin is in some other location, remove or rename the addin. Restart
Excel, attempt to re-install the addin in the addin manager dialog, ie tick
the box. A message will say the addin is not found and ask if you want to
remove it from the list, click yes.

Regards,
Peter T

"Teddy" wrote in message
...
Hi group

How do I with vba remove add in from inactive list of add ins.
I have uninstalled the add in but it still appears in inactive list

Cheers



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 25
Default Remove add in from inactive list excel 2007

On 5 Mar., 13:01, "Peter T" <peter_t@discussions wrote:
If the addin is in the default addins folder remove the addin (don't just
rename it).

If the addin is in some other location, remove or rename the addin. Restart
Excel, attempt to re-install the addin in the addin manager dialog, ie tick
the box. A message will say the addin is not found and ask if you want to
remove it from the list, click yes.

Regards,
Peter T

"Teddy" wrote in message

...



Hi group


How do I with vba remove add in from inactive list of add ins.
I have uninstalled the add in but it still appears in inactive list


Cheers- Skjul tekst i anførselstegn -


- Vis tekst i anførselstegn -


Is there a way to do this by VBA?
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Remove add in from inactive list excel 2007

If the addin is in a default addins folder simply use the Name method to
move the file into a different folder.

If the addin is elsewhere the only programmatic way is to delete the entry
from this key in the registry -

HKEY_CURRENT_USER\Software\Microsoft\Office\versio n\Excel\Add-in Manager

(assuming it was uninstalled last Excel session)

Regards,
Peter T


"Leon" wrote in message
...

Is there a way to do this by VBA?



On 5 Mar., 13:01, "Peter T" <peter_t@discussions wrote:
If the addin is in the default addins folder remove the addin (don't just
rename it).

If the addin is in some other location, remove or rename the addin.
Restart
Excel, attempt to re-install the addin in the addin manager dialog, ie
tick
the box. A message will say the addin is not found and ask if you want to
remove it from the list, click yes.

Regards,
Peter T

"Teddy" wrote in message

...



Hi group


How do I with vba remove add in from inactive list of add ins.
I have uninstalled the add in but it still appears in inactive list


Cheers- Skjul tekst i anførselstegn -


- Vis tekst i anførselstegn -



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,069
Default Remove add in from inactive list excel 2007

If you have deleted the addin & want to remove it from the addin manager
list, only way I know to do this is to use sendkeys to imitate user doing
this manually.

Try this procedure & see if it will do what you are looking for:


Sub CleanAddinList()
Dim AddinCount As Long
Dim GoUpandDown As String
'Turn display alerts off so user is
'not prompted to remove Addin from list
With Application
.DisplayAlerts = False

Do
'Count of all AddIns
AddinCount = Application.AddIns.Count

'Create string for SendKeys that will move up & down
'AddIn Manager List
'Any invalid AddIn listed will be removed
GoUpandDown = "{Up " & AddinCount & "}{DOWN " & AddinCount & "}"

Application.SendKeys GoUpandDown & "~", False
Application.Dialogs(xlDialogAddinManager).Show

'Continue process until all invalid AddIns are removed
'code will only remove one at a time.
Loop While AddinCount < Application.AddIns.Count
.DisplayAlerts = True

End With
End Sub

hope helpful
--
jb


"Teddy" wrote:

Hi group

How do I with vba remove add in from inactive list of add ins.
I have uninstalled the add in but it still appears in inactive list

Cheers



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 25
Default Remove add in from inactive list excel 2007

On 5 Mar., 14:00, "Peter T" <peter_t@discussions wrote:
If the addin is in a default addins folder simply use the Name method to
move the file into a different folder.

If the addin is elsewhere the only programmatic way is to delete the entry
from this key in the registry -

HKEY_CURRENT_USER\Software\Microsoft\Office\versio n\Excel\Add-in Manager

(assuming it was uninstalled last Excel session)

Regards,
Peter T

"Leon" wrote in message

...

Is there a way to do this by VBA?


On 5 Mar., 13:01, "Peter T" <peter_t@discussions wrote:



If the addin is in the default addins folder remove the addin (don't just
rename it).


If the addin is in some other location, remove or rename the addin.
Restart
Excel, attempt to re-install the addin in the addin manager dialog, ie
tick
the box. A message will say the addin is not found and ask if you want to
remove it from the list, click yes.


Regards,
Peter T


"Teddy" wrote in message


...


Hi group


How do I with vba remove add in from inactive list of add ins.
I have uninstalled the add in but it still appears in inactive list


Cheers- Skjul tekst i anførselstegn -


- Vis tekst i anførselstegn -- Skjul tekst i anførselstegn -


- Vis tekst i anførselstegn -


Great thanks
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 25
Default Remove add in from inactive list excel 2007

On 5 Mar., 14:28, john wrote:
If you have deleted the addin & want to remove it from the addin manager
list, only way I know to do this is to use sendkeys to imitate user doing
this manually.

Try this procedure & see if it will do what you are looking for:

Sub CleanAddinList()
* * Dim AddinCount As Long
* * Dim GoUpandDown As String
* * 'Turn display alerts off so user is
* * 'not prompted to remove Addin from list
* * With Application
* * * * .DisplayAlerts = False

* * * * Do
* * * * * * 'Count of all AddIns
* * * * * * AddinCount = Application.AddIns.Count

* * * * * * 'Create string for SendKeys that will move up & down
* * * * * * 'AddIn Manager List
* * * * * * 'Any invalid AddIn listed will be removed
* * * * * * GoUpandDown = "{Up " & AddinCount & "}{DOWN " & AddinCount & "}"

* * * * * * Application.SendKeys GoUpandDown & "~", False
* * * * * * Application.Dialogs(xlDialogAddinManager).Show

* * * * * * 'Continue process until all invalid AddIns are removed
* * * * * * 'code will only remove one at a time.
* * * * Loop While AddinCount < Application.AddIns.Count
* * * * .DisplayAlerts = True

* * End With
End Sub

hope helpful
--
jb



"Teddy" wrote:
Hi group


How do I with vba remove add in from inactive list of add ins.
I have uninstalled the add in but it still appears in inactive list


Cheers- Skjul tekst i anførselstegn -


- Vis tekst i anførselstegn -


Really great :-D

Can I ask you guys if you know a way to install and NOT having a
dialogbox showing up asking if I want to copy to my user folder.
The answer should here be NO. (i don't want to copy)
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2007 Custom View Inactive? Lori H.[_2_] Excel Discussion (Misc queries) 4 June 17th 09 06:14 PM
How do i remove a toolbar from excel 2007? Stefano[_2_] Excel Discussion (Misc queries) 8 July 16th 07 08:48 AM
How to remove the ' ^ etc. in Excel 2007? Laibeus Lord Setting up and Configuration of Excel 1 March 18th 07 06:05 PM
how do i remove a cell name in Excel 2007? kermit Excel Discussion (Misc queries) 2 March 8th 07 10:14 PM
Excel should indicate a list of inactive names 72947 Excel Discussion (Misc queries) 1 May 3rd 06 02:42 PM


All times are GMT +1. The time now is 11:13 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"