on error go to x
正常代码
exit sub
x:
错误处理代码
resume y: 或 resume next 或resume //处理错误之后,执行什么动作
- on error go to x,发生错误跳到x:执行
- exit sub ,防止无错误也执行
- resume y: 跳到y处执行
- resume next 继续执行发生错误处的下一句
- resume 继续执行发生错误的语句
- on error resume next 与 on error go to 0搭配,表示resume next错误忽略的范围至 on error go to 0结束