gpt4 book ai didi

vba - 错误处理-仍然出现运行时错误框

转载 作者:行者123 更新时间:2023-12-03 08:47:34 25 4
gpt4 key购买 nike

我正在尝试在我的代码中实现错误处理程序,如果发生了运行时错误,我设法创建了一个消息框,但是在清除消息框后,会 pop 运行时错误框。这是我的代码的片段:

combinedFilename = Application.GetOpenFilename(filter, , caption)

If combinedFilename <> "False" Then

Set combinedWorkbook = Application.Workbooks.Open(combinedFilename)

Else

MsgBox "No file was uploaded", vbExclamation


End If

任何帮助将不胜感激。

非常感谢

最佳答案

Err.Clear之后写MsgBox

如果清除错误。看到这个小样本:

Public Sub TestMe()

On Error Resume Next
Debug.Print 5 / 0 '11, because this is the number of the error.
Debug.Print Err.Number
Err.Clear
Debug.Print Err.Number '0, because the error is cleared.

End Sub

关于vba - 错误处理-仍然出现运行时错误框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50395630/

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