0

请帮助解决以下问题:

1) 设置“Module3”的所有宏列表的代码,并将此列表放在“Sheet5”中,从下面的单元格“E14”开始。

2) 然后,代码应该运行所有列出的宏

我尝试使用引用的代码VBComponent,但出现错误。

4

1 回答 1

4

根据我的谷歌搜索,我找到了我评论过你的答案,但他们忘记了重要的事情,那就是检查和允许你运行宏的选项。

首先列出excel中所有宏的函数并返回和字符串用空格分隔:

Function ListAllMacroNames() As String

Dim pj As VBProject
Dim vbcomp As VBComponent
Dim curMacro As String, newMacro As String
Dim x As String
Dim y As String
Dim macros As String

On Error Resume Next
curMacro = ""
Documents.Add

For Each pj In Application.VBE.VBProjects

     For Each vbcomp In pj.VBComponents
            If Not vbcomp Is Nothing Then
                If vbcomp.CodeModule = "Module_name" Then
                    For i = 1 To vbcomp.CodeModule.CountOfLines
                       newMacro = vbcomp.CodeModule.ProcOfLine(Line:=i, _
                          prockind:=vbext_pk_Proc)

                       If curMacro <> newMacro Then
                          curMacro = newMacro

                            If curMacro <> "" And curMacro <> "app_NewDocument" Then
                                macros = curMacro + " " + macros
                            End If

                       End If
                    Next
                End If
            End If
     Next

Next

ListAllMacroNames = macros

End Function

下一步,可能是第一步,您需要更改办公室(Excel)信任中心的一些配置,检查以下图像:

第1步:

第1步

第2步:

第2步

Step 3 (Final) 勾选“依赖访问数据模型项目vba”选项:

最后一步

然后您需要将此引用添加到您的 Excel:

步骤 2.5

如果您有另一个版本的 Microsoft Visual Basic for Applications Extensibility,请不要担心,在本例中是 5.3。检查然后接受。不要忘记您需要找到该参考,列表顶部没有。

步骤 2.6

最后,您可以调用 ListAllMacroNames ( ) 函数 使用另一个名为 execute () 的宏,看看我已经验证了它不会调用相同的宏(execute , ListAllMacroNames ),否则可能会产生无限循环。

Public Sub execute()
Dim AppArray() As String

AppArray() = Split(ListAllMacroNames, " ")

For i = 0 To UBound(AppArray)

temp = AppArray(i)

If temp <> "" Then

    If temp <> "execute" And temp <> "ListAllMacroNames" Then

    Application.Run (AppArray(i))


    Sheet5.Range("E" & i + 14).Value = temp

    End If

End If

Next i

End Sub

编辑 2在第一种方法中将“Module_name”更改为您想要的模块,并在执行方法中设置正确的工作表名称(在本例中为工作表 5)。

于 2015-01-25T03:00:55.663 回答