Why does Error 0 occur?
If it does occur, how can we handle it since any Resume statement gives a Error 20(Resume without an error).
Printable View
Why does Error 0 occur?
If it does occur, how can we handle it since any Resume statement gives a Error 20(Resume without an error).
Your code is probably "falling through" to your error trapping routine. To fix it, put an Exit Sub or Function just prior to the error routine.