对错误转到[标签]在VBA不工作(on error goto [label] not working

2019-10-29 18:09发布

在我的Excel工作簿中的一个我已经创建了一个包含如下的宏:

On Error GoTo saltaw
Open fileout For Output As #iFileNumber

然而,当fileout出现:“未找到路径运行时错误‘76’”,就好象包含一些无效字符(“\”,例如)宏停止和误差窗口on error goto行不存在。 同样的,如果我代替on error gotoon error resume next 。 宏停在下面一行。 为什么?

Answer 1:

进入Tools -> Options -> General ,并设置Error Trapping到其他事物更适合你的东西。



文章来源: on error goto [label] not working in VBA