What is procErr: used for in Visual Basic? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:40:22Z http://stackoverflow.com/feeds/question/974157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/974157/what-is-procerr-used-for-in-visual-basic 0 What is procErr: used for in Visual Basic? PropellerHead 2009-06-10T07:33:24Z 2009-06-10T14:03:31Z <p>I'm currently maintaining a legacy Visual Basic project that has these "procErr:" statements all over the place. My guess is, that they are used as a way to handle if any error occurred while executing the function, is this correct?</p> <p>I've converted the project to VB.NET. Would a better way not be, instead of using this procErr syntax, to wrap it inside a Try Catch instead?</p> http://stackoverflow.com/questions/974157/what-is-procerr-used-for-in-visual-basic/974199#974199 1 Answer by Razzie for What is procErr: used for in Visual Basic? Razzie 2009-06-10T07:48:42Z 2009-06-10T14:03:31Z <p>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).</p> <p>In the actual code, you then have statements like <code>On Error GoTo ProcErr</code> and then you define the procerr block:</p> <pre><code>procErr: msgbox "an error has happened" </code></pre> <p>You could replace this with any other name. In VB.NET you would indeed replace this with a try catch routine:</p> <pre><code>Try // code Catch x As Type // exceoption handling Finally End Try 'cleanup code </code></pre>