PC Review


Reply
Thread Tools Rate Thread

Add-in load up

 
 
Ben
Guest
Posts: n/a
 
      6th Aug 2008
Hi all,

I forget how to do this, but how do I disable a third party addin
fromloading up when Excel launches. I have a adobe pdf and hummingbird addin
that loads into Excel. Unfortunately they do't show up in Excel's addin box
for deselect, so I can't disable it from there.

How can I disable it from loading? Also, apparently one of these addin
caused my Excel's X (close) box on the top right corner of the window to be
greyed out too. Any thoughts on this as well?

Thanks in advance.

Ben


--

 
Reply With Quote
 
 
 
 
john
Guest
Posts: n/a
 
      6th Aug 2008
Paste this code in standard module & run it. It should find all Installed
AddIns & gives you the option to uninstall if required.

Hope helps.

Sub CheckAddIns()
For Each ad In Application.AddIns
If ad.Installed = True Then
msg = MsgBox("AddIn Name: " & ad.Name & Chr(10) & " " & _
"Do You Want To UnInstall This AddIn?", _
36, "AddIns")
If msg = 6 Then
ad.Installed = False
msg = MsgBox("AddIn Name: " & ad.Name & Chr(10) & " " & _
"Has Been UnInstalled", vbInformation, "AddIns")
End If
End If
Next
End Sub
--
jb


"Ben" wrote:

> Hi all,
>
> I forget how to do this, but how do I disable a third party addin
> fromloading up when Excel launches. I have a adobe pdf and hummingbird addin
> that loads into Excel. Unfortunately they do't show up in Excel's addin box
> for deselect, so I can't disable it from there.
>
> How can I disable it from loading? Also, apparently one of these addin
> caused my Excel's X (close) box on the top right corner of the window to be
> greyed out too. Any thoughts on this as well?
>
> Thanks in advance.
>
> Ben
>
>
> --
>

 
Reply With Quote
 
Ben
Guest
Posts: n/a
 
      6th Aug 2008
John,

It worked great!

Thanks,

Ben
--



"john" wrote:

> Paste this code in standard module & run it. It should find all Installed
> AddIns & gives you the option to uninstall if required.
>
> Hope helps.
>
> Sub CheckAddIns()
> For Each ad In Application.AddIns
> If ad.Installed = True Then
> msg = MsgBox("AddIn Name: " & ad.Name & Chr(10) & " " & _
> "Do You Want To UnInstall This AddIn?", _
> 36, "AddIns")
> If msg = 6 Then
> ad.Installed = False
> msg = MsgBox("AddIn Name: " & ad.Name & Chr(10) & " " & _
> "Has Been UnInstalled", vbInformation, "AddIns")
> End If
> End If
> Next
> End Sub
> --
> jb
>
>
> "Ben" wrote:
>
> > Hi all,
> >
> > I forget how to do this, but how do I disable a third party addin
> > fromloading up when Excel launches. I have a adobe pdf and hummingbird addin
> > that loads into Excel. Unfortunately they do't show up in Excel's addin box
> > for deselect, so I can't disable it from there.
> >
> > How can I disable it from loading? Also, apparently one of these addin
> > caused my Excel's X (close) box on the top right corner of the window to be
> > greyed out too. Any thoughts on this as well?
> >
> > Thanks in advance.
> >
> > Ben
> >
> >
> > --
> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Load request form fails: Could not load some objects because they arenot available on this machine Mandyli611@gmail.com Microsoft Outlook 1 5th Aug 2008 10:22 PM
Using Assembly.Load(byte[]) to load multiple versions of dll, and AppDomain.AssemblyResolve Stephen Ahn Microsoft Dot NET Framework 1 8th May 2006 10:35 AM
beginning page load immediately on postback with a long load time ? Mad Scientist Jr Microsoft ASP .NET 7 30th Jun 2004 08:40 PM
Windows XP hangs between login and load: press esc key begins load! Jason Sirota Windows XP General 2 24th Apr 2004 09:20 AM
can't load system32/config/software and windows failed to load T'ing Jun Windows XP Security 2 2nd Sep 2003 09:39 AM


Features
 

Advertising
 

Newsgroups
 


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