Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default List all Addin Project Name

I'm wondering if it is possible to get the project name of each registered
addin. I've used the following code to do this for all installed addins but
I'm wondering if this can be done if the addin is not currently installed or
if their is a better way for getting installed addins project names. (using
Xl2000)

For Each ad In Application.AddIns
If ad.Installed And LCase(Right(ad.Name, 3)) = "xla" Then MsgBox
Application.Workbooks(ad.Name).VBProject.Name
Next ad
--
Cheers!

Richard Reye

"Never argue with an idiot. They'll bring you down to their level then beat
you with experience" - someone
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 94
Default List all Addin Project Name

The project name is stored inside the project file. You'll need to open a
project in order to read its name. Therefore, if an add-in is not installed
(loaded or opened), you cannot read its name using VBA.

Regards,
Edwin Tam

http://www.vonixx.com


"Richard Reye" wrote:

I'm wondering if it is possible to get the project name of each registered
addin. I've used the following code to do this for all installed addins but
I'm wondering if this can be done if the addin is not currently installed or
if their is a better way for getting installed addins project names. (using
Xl2000)

For Each ad In Application.AddIns
If ad.Installed And LCase(Right(ad.Name, 3)) = "xla" Then MsgBox
Application.Workbooks(ad.Name).VBProject.Name
Next ad
--
Cheers!

Richard Reye

"Never argue with an idiot. They'll bring you down to their level then beat
you with experience" - someone

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
XLA addin attached in settings does not show up in project explorer Leon[_2_] Excel Discussion (Misc queries) 0 June 10th 09 08:03 AM
XLA addin attached in settings does not show up in project explorer Leon[_2_] Excel Discussion (Misc queries) 0 June 8th 09 12:48 PM
Calling a procedure in a protected VBA Addin Project Chip Pearson Excel Programming 1 September 25th 04 03:47 PM
Remove Excel AddIn from AddIn List !! Help carl Excel Programming 2 December 8th 03 03:36 PM
AddIn Project for Excel Craig Buchanan Excel Programming 6 November 26th 03 12:08 PM


All times are GMT +1. The time now is 12:30 AM.

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

About Us

"It's about Microsoft Excel"