Access VBA: Is it possible to reset error handling

前端 未结 5 1256
再見小時候
再見小時候 2021-02-19 05:18

I am using in the first part of my program

on error go to start

Suppose in my second part I am again using

on error resume next

This second erro

5条回答
  •  鱼传尺愫
    2021-02-19 05:50

    try

    On Error Goto 0
    

    For further help look here: http://msdn.microsoft.com/en-us/library/bb258159.aspx

提交回复
热议问题