Excel / VBA代码忽略输入的参数

问题描述 投票:2回答:1

我有一个VBA sub,应该在需要时加载用户代码模块。我的问题是,当我通过(“ModuleA”,“。bas”)时,代码将返回“ModuleB”。 ModuleB在指定的文件路径中不存在(已删除)。

当特定传递不同的值时,此代码如何返回不存在的文件? 'filepath'变量包含正确的路径,并且正确地传递给import语句。

此外,“删除”语句不会删除传递给它的模块。

我从来没有碰到这样的问题而且我不知道该怎么办。

我尝试过:重新启动excel / PC,重命名模块以更改路径,添加代码以删除子模块末尾的模块。

    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''SJH
'LoadModule
'
'Loads in a module with a specified name from the BigData Directory
'
'extension includes the ., so .frm or .bas
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Public Sub LoadModule(ByVal ModuleName As String, ByVal extension As String)
    ThisWorkbook.Activate
    Err.Clear
     'handle errors in-line...
    On Error Resume Next

    'include reference to "Microsoft Visual Basic for Applications Extensibility"
    Dim vbproj As VBIDE.VBProject
    Dim vbc As VBIDE.VBComponent
    Dim filepath As String

    filepath = ("\\uslafnas01\GE_LAB\BigData\" & ModuleName & extension)
    Set vbproj = ActiveWorkbook.VBProject

    'Error will occur if component with this name is not in the project
    Set vbc = vbproj.VBComponents(ModuleName)

    If Err.Number <> 0 Then
        Err.Clear
        'so add it...
        vbproj.VBComponents.Import filepath
        If Err.Number <> 0 Then
           MsgBox ("Could not import " & ModuleName & " Module: " & filepath)
        End If
    Else
        'no error - vbc should be valid object
        'remove existing version first before adding new version
        vbproj.VBComponents.Remove vbc
        vbproj.VBComponents.Import filepath
        If Err.Number <> 0 Then
            MsgBox ("New " & ModuleName & " couldn't replace old " & ModuleName & " Module " & filepath)
        End If
    End If


    'Set vbc = Nothing
    'Set vbproj = Nothing


End Sub
excel vba vbe
1个回答
3
投票

模块的名称不是由其文件名决定的,而是由隐藏的VB_Name属性决定的,如果您在记事本中打开模块,则可以看到该属性。

如果你在记事本中打开ModuleA.bas,我怀疑你会在Option Explicit上面看到这是第一行:

Attribute VB_Name = "ModuleB"

文件名无关紧要,这个属性决定了VBA模块的编程名称。

无法在VBE中(直接)查看或编辑模块和成员属性。

© www.soinside.com 2019 - 2024. All rights reserved.