gpt4 book ai didi

vba - 错误处理程序-退出子与结束子

转载 作者:行者123 更新时间:2023-12-03 11:55:16 24 4
gpt4 key购买 nike

为什么我要通过Exit Sub退出Error Handler(在处理之后),而不是仅仅让它进入End Sub?

我敢肯定这很简单。我只是不明白。谢谢你的帮助。

例:

Public Sub SubA()
On Error Goto ProcError

''# other code
MsgBox FuncA()

ProcExit:
Exit Sub

ProcError:
MsgBox Err.Description
Resume ProcExit
End Sub

最佳答案

无论是否发生错误,ProcExit标签都是释放所有资源的地方。例如:

Public Sub SubA()
On Error Goto ProcError

Connection.Open
Open File for Writing
SomePreciousResource.GrabIt

ProcExit:
Connection.Close
Connection = Nothing
Close File
SomePreciousResource.Release

Exit Sub

ProcError:
MsgBox Err.Description
Resume ProcExit
End Sub

关于vba - 错误处理程序-退出子与结束子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1377152/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com