The Andrew N. Wiggins Consultancy

Contact me at webmaster@anw.biz

Experimental Site

 

This site designed by Byg Software Ltd

 

The ANW.BIZ Home Page
Up

Addins

 
   
'' ***************************************************************************
'' Purpose  : List all addins
'' Written  : 21-Oct-2003 by Andy Wiggins - Byg Software Ltd
''
Sub ListAllAddins()
    Dim x, y, z
    y = 1
    For Each x In AddIns
        With x
            ActiveSheet.Cells(y, 1) = .Name
            ActiveSheet.Cells(y, 2) = .Installed
            ActiveSheet.Cells(y, 3) = .FullName
        End With
        y = y + 1
    Next
    
    Cells.EntireColumn.AutoFit
    
End Sub
 
   

Published: 17 January 2004
Last edited: 19 May 2008 16:43