Das Excel-Add-In wird beim Öffnen von Excel aus VBA nicht geladen

Das Excel-Add-In wird beim Öffnen von Excel aus VBA nicht geladen

Ich verwende ExcelReg-Ex-Add-Inund es funktioniert gut, das einzige Problem ist, dass es nicht geladen wird, wenn Excel per VBA gestartet wird.

Ich habe ein Makro in Word, um einige Daten in Word zu sammeln und sie nach Excel zu kopieren. Dieses startet Excel, die Ausgabe ist in Ordnung, aber ich muss Excel neu starten, um das Add-In verwenden zu können (es ist in den Optionen aktiviert, wird nur nicht geladen).

Ich habe ein anderes Makro ausprobiert: Öffnen Sie einfach Excel und erstellen Sie eine neue Arbeitsmappe. Das Problem ist wieder dasselbe.

Ich habe nur dieses eine Add-In eines Drittanbieters, daher kann ich keinen Vergleich mit anderen anstellen.

Irgendeine Idee?

Antwort1

So soll es funktionieren.

Aus COM-Dokumenten.

      Component Automation  
Exposing the Application Object  

 Language Filter: All Language Filter: Multiple Language Filter: Visual Basic Language Filter: C# Language Filter: C++ Language Filter: J# Language Filter: JScript  
 Visual Basic (Declaration) 
 Visual Basic (Usage) 
 C# 
 C++ 
 J# 
 JScript 

Any document-based, user-interactive applications that expose ActiveX objects should have one top-level object named the Application object. This object is initialized as the active object when an application starts.

The Application object identifies the application and provides a way for ActiveX clients to bind to and navigate the application's exposed objects. All other exposed objects are subordinate to the Application object; it is the root-level object in the object hierarchy.

The names of the Application object's members are part of the global name space, so ActiveX clients do not need to qualify them. For example, if MyApplication is the name of the Application object, a Visual Basic program can refer to a method of MyApplication as MyApplication.MyMethod or simply MyMethod. However, you should be careful not to overload the Application object with too many members because it can cause ambiguity and decrease performance. A large, complicated application with many members should be organized hierarchically, with a few generalized objects at the top, branching out into smaller, more specialized objects. 

The following chart shows how applications should expose their Application and Document objects.

Command line  Multiple-document interface application  Single-document interface application  
/Embedding 
 Expose class factories for document classes, but not for the application.

Call RegisterActiveObject for the Application object.
 Expose class factories for document class, but not for the application.

Call RegisterActiveObject for the Application object.

/Automation 
 Expose class factories for document classes.

Expose class factory for the application using RegisterClassObject.

Call RegisterActiveObject for the Application object.
 Do not expose class factory for document class.

Expose class factory for the Application object using RegisterClassObject.

Call RegisterActiveObject for the Application object.

No OLE switches 
 Expose class factories for document classes, but not for the application.

Call RegisterActiveObject for the Application object.
 Call RegisterActiveObject for the Application object. 


The call to RegisterActiveObject enters the Application object in OLE's running object table (ROT), so ActiveX clients can retrieve the active object instead of creating a new instance. Visual Basic applications can use the GetObject statement to access an existing object.

 © Microsoft Corporation. All rights reserved. 

Daher lädt /a oder /embedding nichts außer der nackten App (und /a ist auch ein guter Schritt zur Fehlerbehebung).

Starten Sie Ihre App und verwenden Sie dann GetObject.

Außerdem gibt es kaum einen Grund, ein solches Add-In zu verwenden, da Sie genau das tun können, was das Add-In tut. Dies ist VBS (also in VBA einfügbar) und verwendet dieselbe RegEx-Engine wie Ihr Add-In (Word hat auch eine eigene RegEx-Engine namens Use Wildcards). Setzen Sie einen Verweis auf Microsoft VBScript Regular Expression 5.5.

Set regEx1 = New RegExp
If Instr(LCase(Arg(1)), "i") > 0 then
    regEx1.IgnoreCase = True
Else
    regEx1.IgnoreCase = False
End If 
If Instr(LCase(Arg(1)), "v") > 0 then
    IncExc = False
Else
    IncExc = True
End If 
regEx1.Global = False
regEx1.Pattern = Pttn 
Do Until Inp.AtEndOfStream
    Line=Inp.readline
    If RegEx1.Test(Line) = IncExc then
        outp.writeline Line
    End If
Loop

Antwort2

Ich habe es basierend auf der Antwort gelöst, die auf eine ähnliche Frage in Stackoverflow gepostet wurde:https://stackoverflow.com/a/806720/4721734

Ich habe mir dieses Problem noch einmal angesehen und die Application.Addins-Sammlung scheint alle Add-Ins im Menü Tools->Add-Ins aufgelistet zu haben, mit einem booleschen Wert, der angibt, ob ein Add-In installiert ist oder nicht. Was für mich jetzt zu funktionieren scheint, ist, alle Add-Ins zu durchlaufen und wenn .Installed = true ist, dann setze ich .Installed auf False und wieder zurück auf True, und das scheint meine Add-Ins richtig zu laden.

Function ReloadXLAddins(TheXLApp As Excel.Application) As Boolean

    Dim CurrAddin As Excel.AddIn

    For Each CurrAddin In TheXLApp.AddIns
        If CurrAddin.Installed Then
            CurrAddin.Installed = False
            CurrAddin.Installed = True
        End If
    Next CurrAddin

End Function

verwandte Informationen