vba - 类模块函数中的错误处理

标签 vba function class error-handling

我的工作簿中有几个类(class)模块。类模块 1 中的公共(public)函数之一依赖于类模块 2 中的函数的数据,这种情况发生了四次。如果对象从 2 类中丢失,程序会崩溃(如预期的那样)。我很难正确调试代码,因为我似乎只能从主子例程中退出程序。我更愿意从 Class 函数中杀死程序,但我不知道这是否可能(如果可以,我们可以在这里压缩它)。我目前在主子程序中使用 On Error 语句,但这些语句没有及时执行,因为 Class 1 中的函数从 Class 2 获取数据四次。

类模块 1 功能

Function oload(ByVal pload As Double, ByVal cord As cCordCol, ByVal grid As cGridCol)

' cord is a scripting.dictionary of Class Module Objects (cCord)
' grid is a scripting.dictionary of Class Module Objects (cGrid)

  n1 = grid.Item(pg1).toGlobal(cord)
  n2 = grid.Item(pg2).toGlobal(cord)
  n3 = grid.Item(pg3).toGlobal(cord)
  n4 = grid.Item(pg4).toGlobal(cord)

' do something here

oload = sum_Ploads

End Function

在 n1 到 n4 上方是我调用类模块 2 的公共(public)函数的地方。

下面是类模块 2 函数
Function toGlobal(ByVal cord As cCordCol)

On Error Resume Next
ctype = cord.Item(Me.cord1).sys

' Missing Coordinate System Error
If Err.Number <> 0 Then
  i = MsgBox("The definition of Coordinate " & Me.cord1 & " was missing from the Bulk Data " & Chr(10) & _
             "File. Include this Coord in the .bdf and re-execute the program.", vbOKOnly, "Runtime Error")

' *** TERMINATE MAIN SUBROUTING HERE ***

End If

这将引发一个消息框,指示缺少对象,特别是 (me.cord1) 部分 - 这是 scripting.dictionary 中的一个项目。我想在这里终止程序。

主要子程序(大大减少)在这里:
Sub main()

  ' lookup Element ID, Calc OLOAD, Sum Load Set OLOAD
  On Error GoTo PROC_ERR
  If dict_quad.Exists(EID) Then dict_oload.Item(LS).add_to_oload (dict_quad.Item(EID).oload(pload, dict_cord, dict_grid))
  If dict_tria.Exists(EID) Then dict_oload.Item(LS).add_to_oload (dict_tria.Item(EID).oload(pload, dict_cord, dict_grid))

PROC_ERR:
If Err.Number <> 0 Then Exit Sub

End Sub

我这里有很多嵌套操作。您可以看到“oload”函数完成之前“goto”语句不会执行。 “oload”函数在完成计算之前四次调用“toGlobal”函数。

在“toGlobal”函数中第一次出现丢失对象后,如何终止子程序?

最佳答案

您的 On Error Resume Next语句正在吞噬 toGlobal 中的错误并防止它“冒泡”调用堆栈。您拥有的一种选择是“重新抛出”错误。在 VBA 中这样做比其他语言有点笨拙,但仍然是可能的。

例如,您可以更改 toGlobal功能类似于以下内容:

Function toGlobal(ByVal cord As cCordCol)

On Error Resume Next
ctype = cord.Item(Me.cord1).sys

' Missing Coordinate System Error
If Err.Number <> 0 Then
  i = MsgBox("The definition of Coordinate " & Me.cord1 & " was missing from the Bulk Data " & Chr(10) & _
             "File. Include this Coord in the .bdf and re-execute the program.", vbOKOnly, "Runtime Error")

' *** TERMINATE MAIN SUBROUTING HERE ***
    'Save info from the error object (it will get cleared in the On Error statement below)
    Dim ErrNum As Long: ErrNum = Err.Number
    Dim ErrMsg As String: ErrMsg = Err.Description
    Dim ErrSrc As String: ErrSrc = Err.Source

    'Reset error handling to allow errors to bubble up the call stack
    On Error Goto 0    

    '"Re-throw" the error
    Err.Raise ErrNum, "toGlobal:" & ErrSrc, ErrMsg

End If

另一种选择是删除您的 On Error Resume Next您的类模块中的语句,以便错误自然地冒泡。这是我通常会采用的方法,除非有一些令人信服的理由偏离它。

关于vba - 类模块函数中的错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27828316/

相关文章:

javascript - 如何在父函数中加入函数/监听器

python位置参数和关键字参数

c# - 从另一个类 c# 更新 gui

java - java中的类字典(数据结构)

vba - Excel VBA Range(Cell).Value=sum 1004 :Application-Defined Or Object-Defined

excel - 每张纸上同一单元格中的按钮

vba - 通过 vba 启用自动另存为(无需在提示时单击“保存”)

在 C 函数中更改字符数组

excel - 使用Word宏返回Excel的最后一行

c# - 比较类的两个实例