Excel VBA-确定模块是否包含在项目中

时间:2019-03-25 19:27:38

标签: excel vba vbe

我目前正在从事一个无法验证是否已安装所有模块的项目。越来越多的模块用于我使用的程序的通用功能。我在网上尝试了一些无法使用的解决方案,因为我不熟悉Activeworkbook.VBProject.VBComponents()方法。

有人提到我应该检查工具参考 Microsoft Visual Basic应用程序可扩展性,我检查没有结果。任何帮助,将不胜感激。 :)

参考文献:

https://www.mrexcel.com/forum/excel-questions/284317-vba-function-check-if-particular-macro-exists.html

https://www.devhut.net/2010/12/09/ms-access-vba-determine-if-a-module-exists/

这是我的代码:

Option Explicit

Public Function Is_Module_Loaded(name As String) As Boolean
    Dim Module As Object
    Dim Module_Name As String
    Module_Name = name
    Is_Module_Loaded = False


    On Error GoTo errload
        Set Module = ActiveWorkbook.VBProject.VBComponents(Module_Name).CodeModule

    Is_Module_Loaded = True

    If (0 <> 0) Then
errload:
        MsgBox ("MODULE: " & Module_Name & " is not installed please add")
        Stop
    End If

End Function

运行代码时,我没有得到任何非常有用的错误,排除了我自己的错误,因为我报错说我的模块不在,这是错误的。

2 个答案:

答案 0 :(得分:1)

编辑:已更新,将工作簿添加为第二个参数

尝试一下:

Sub tester()

    Debug.Print Is_Module_Loaded(ThisWorkbook, "Module4")
    Debug.Print Is_Module_Loaded(ActiveWorkbook, "Module4")

End sub


Public Function Is_Module_Loaded(wb as Workbook, name As String) As Boolean

    Dim Module As Object

    On Error Resume Next
    Set Module = wb.VBProject.VBComponents(name).CodeModule
    On Error GoTo 0

    Is_Module_Loaded = Not Module Is Nothing

    If Not Is_Module_Loaded Then
        MsgBox ("MODULE: " & name & " is not installed in '" & _
                wb.Name & "' please add")
    End If

End Function

答案 1 :(得分:0)

所以我相信我已经找到了解决方法。

信用:Tim Williams,Mathieu Guindon和Joe Phi(请参阅链接)为解决方案提供指导

参考:(https://stackoverflow.com/a/46727898/10297459

注意的问题:最初的Tim提到没有设置工作簿可能会使我引用正确的工作簿,这是主要问题,因为我打开了其他正在尝试引用的工作簿。 / p>

    Option Explicit

Public Function Is_Module_Loaded(name As String, Optional wb As Workbook) As Boolean 
'!!!need to reference: microsoft visual basic for applications extensibility 5.3
        Dim j As Long
        Dim vbcomp As VBComponent
        Dim modules As Collection
            Set modules = New Collection
        Is_Module_Loaded = False

    'check if value is set

        If wb Is Nothing Then
            Set wb = ThisWorkbook
        End If
        If (name = "") Then
            GoTo errorname
        End If

    'collect names of files
        For Each vbcomp In ThisWorkbook.VBProject.VBComponents

            If ((vbcomp.Type = vbext_ct_StdModule) Or (vbcomp.Type = vbext_ct_ClassModule)) Then
                modules.Add vbcomp.name
            End If

        Next vbcomp

    'Compair the file your looking for to the collection
        For j = 1 To modules.Count
            If (name = modules.Item(j)) Then
                Is_Module_Loaded = True
            End If
        Next j
        j = 0

    'if Is_module_loaded not true
        If (Is_Module_Loaded = False) Then
            GoTo notfound
        End If

    'if error
        If (0 <> 0) Then
errorname:
            MsgBox ("Function BootStrap.Is_Module_Loaded Was not passed a Name of Module")
            Stop
        End If
        If (0 <> 0) Then
notfound:
            MsgBox ("MODULE: " & name & " is not installed please add")
            Stop
        End If

End Function
相关问题