Share via


COMAddIns Property

Returns the COMAddIns object.

Remarks

All of the FrontPage add-ins that are registered in the Windows Registry are located under the following key:

HKEY_CURRENT_USER\Software\Microsoft\Office\version\FrontPage\AddIns

Add-ins designed for administrators are registered under:

HKey_Local_Machine\Software\Microsoft\Office\version\FrontPage\Addins

Example

This example returns the number of add-ins available to Microsoft FrontPage.

  Private Sub GetCOMAddIns()
    Dim myWeb As WebEx
    Dim myAddinCount As Integer

    Set myWeb = ActiveWeb
    myAddinCount = Application.COMAddIns.Count

End Sub