show/hide this revision's text 2 added 2 characters in body

My VB is a bit rusty, but I believe 'ProcErr' is not a reserved keyword. It is just a naming convention in VB to indicate the block that should be executed when an error occurs in your method (or 'procedure', hence the name).

In the actual code, you then have statements like On Error GoTo ProcErr and then you define the procerr block:

procErr:
msgbox "an error has happened"

You could replace this with any other name. In VB.NET you would indeed replace this with a try catch routine:

Try
' // code
Catch x As Type
' // exceoption handling
Finally
End Try 'cleanup code
show/hide this revision's text 1

My VB is a bit rusty, but I believe 'ProcErr' is not a reserved keyword. It is just a naming convention in VB to indicate the block that should be executed when an error occurs in your method (or 'procedure', hence the name).

In the actual code, you then have statements like On Error GoTo ProcErr and then you define the procerr block:

procErr:
msgbox "an error has happened"

You could replace this with any other name. In VB.NET you would indeed replace this with a try catch routine:

Try
' code
Catch x As Type
' exceoption handling
Finally
End Try 'cleanup code