ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Listing installed COM add-ins (https://www.excelbanter.com/excel-programming/406015-listing-installed-com-add-ins.html)

Bob Flanagan[_2_]

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



Jim Rech[_2_]

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
|
|



Peter T

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
|
|





Jim Rech[_2_]

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
| |
| |
|
|
|
|



Jim Cone

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



Peter T

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






All times are GMT +1. The time now is 10:31 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com