Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 81
Default Listing installed COM add-ins

Is there a way to list via vba the COM add-ins that are installed as
auto-opening add-ins?

Bob


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 533
Default Listing installed COM add-ins

Enumerate the add-ins listed under
HKCU\Software\Microsoft\Office\Excel\Addins maybe?

--
Jim
"Bob Flanagan" wrote in message
. ..
| Is there a way to list via vba the COM add-ins that are installed as
| auto-opening add-ins?
|
| Bob
|
|


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Listing installed COM add-ins

also -

Dim cai As COMAddIn
For Each cai In Application.COMAddIns
Debug.Print cai.Connect, cai.ProgId, cai.Description
Next

Doesn't of course fully confirm the auto-opening state (ConnectMode), but
as-good-as if you run in the open event of an installed xla.

Regards
Peter T

"Jim Rech" wrote in message
...
Enumerate the add-ins listed under
HKCU\Software\Microsoft\Office\Excel\Addins maybe?

--
Jim
"Bob Flanagan" wrote in message
. ..
| Is there a way to list via vba the COM add-ins that are installed as
| auto-opening add-ins?
|
| Bob
|
|




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 533
Default Listing installed COM add-ins

WAY better!

--
Jim
"Peter T" <peter_t@discussions wrote in message
...
| also -
|
| Dim cai As COMAddIn
| For Each cai In Application.COMAddIns
| Debug.Print cai.Connect, cai.ProgId, cai.Description
| Next
|
| Doesn't of course fully confirm the auto-opening state (ConnectMode), but
| as-good-as if you run in the open event of an installed xla.
|
| Regards
| Peter T
|
| "Jim Rech" wrote in message
| ...
| Enumerate the add-ins listed under
| HKCU\Software\Microsoft\Office\Excel\Addins maybe?
|
| --
| Jim
| "Bob Flanagan" wrote in message
| . ..
| | Is there a way to list via vba the COM add-ins that are installed as
| | auto-opening add-ins?
| |
| | Bob
| |
| |
|
|
|
|


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Listing installed COM add-ins


Hi Peter,
Did you finally trade in xl97_sr1 for xl2003? <g
Regards,
Jim Cone


"Peter T"
<peter_t@discussions
wrote in message
also -
Dim cai As COMAddIn
For Each cai In Application.COMAddIns
Debug.Print cai.Connect, cai.ProgId, cai.Description
Next
Doesn't of course fully confirm the auto-opening state (ConnectMode), but
as-good-as if you run in the open event of an installed xla.
Regards
Peter T




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Listing installed COM add-ins

LOL!
Now why would I want to trade in my trusty xl97_sr1 !
But as I write dll's, which can also run as ComAddins, I need at least
xl2000 as well.

Regards,
Peter T


"Jim Cone" wrote in message
...

Hi Peter,
Did you finally trade in xl97_sr1 for xl2003? <g
Regards,
Jim Cone


"Peter T"
<peter_t@discussions
wrote in message
also -
Dim cai As COMAddIn
For Each cai In Application.COMAddIns
Debug.Print cai.Connect, cai.ProgId, cai.Description
Next
Doesn't of course fully confirm the auto-opening state (ConnectMode), but
as-good-as if you run in the open event of an installed xla.
Regards
Peter T




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
where is excel2007 installed? Aqueous Setting up and Configuration of Excel 5 May 8th 07 06:07 PM
Lookup cannot be installed... caspar m Setting up and Configuration of Excel 0 May 8th 06 01:19 PM
=weeknum() - installed the add-in Marcotte A Excel Worksheet Functions 2 January 23rd 06 06:36 PM
Listing of one cell controlling the listing of another cell. peijuan Excel Programming 0 August 8th 04 03:17 AM
excel not installed Irv[_2_] Excel Programming 1 February 26th 04 01:21 PM


All times are GMT +1. The time now is 03:00 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"