Trap error or 'Resume Next'
- by Craig Johnston
I realise this is an older programming environment, but I have to clean up some VB6 code and I am finding that most of it uses:
Resume Next
What is the general consensus about the use of Resume Next?
Surely, if there is an error, you would want the app to stop what it was doing, rollback any data changes, and inform the user of the error, rather than just resuming.
When is it good idea to use Resume?