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
You need to clear the error. Try putting this code in:
If Err.Number > 0 Then Err.Clear End If
You can also use Err.Number to handle specific error cases.