ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Is there a "generic" Error Handling method (https://www.excelbanter.com/excel-programming/321739-there-generic-error-handling-method.html)

Brad K.

Is there a "generic" Error Handling method
 
Is there an Error Handling method that can be used in a generic sense? i.e.
a statement that can be included in any sub. that will handle any error to
some degree.

Thanks,
Brad K

gocush[_29_]

Is there a "generic" Error Handling method
 
Of course everyone has there own but you could use something like:

On Error GoTo ErrorHandler

'Your code

'''''''''''''''''''''''''''''''''''''''''''''''''' '''''''''''
'' Close and tidy up
Tidy:

'' Reset variables
Set cnn = Nothing
Set cmd = Nothing
ActiveSheet.Protect
Application.EnableEvents= True
' etc --- comment out the ones that don't apply
Exit Sub

'' - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ErrorHandler:

MSG ="Error Number: " & Err & _
Chr(10) & "Error Description: " & Error()

MsgBox NSG, vbInformation, "ERROR:"
GoTo Tidy

End Sub

"Brad K." wrote:

Is there an Error Handling method that can be used in a generic sense? i.e.
a statement that can be included in any sub. that will handle any error to
some degree.

Thanks,
Brad K



All times are GMT +1. The time now is 10:25 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com