What makes up a robust Error Handler?
To those experienced: what would make up a robust Error Handler, or a method for robust error handling? Example, MS Access wizards generate:
On Error GoTo Err_Event
(VB Code here)
Exit_Event:
Exit Sub
Err_Event:
MsgBox Err.Description
Resume Exit_Event
Is this all that is required for all my error handling needs?
Thank you!
Llyal
To those experienced: what would make up a robust Error Handler, or a method for robust error handling? Example, MS Access wizards generate:
On Error GoTo Err_Event
(VB Code here)
Exit_Event:
Exit Sub
Err_Event:
MsgBox Err.Description
Resume Exit_Event
Is this all that is required for all my error handling needs?
Thank you!
Llyal