Try Statement And Error Handling - VB#12 ~ VBTheory™ Tutorials

Monday, April 30, 2012

Try Statement And Error Handling - VB#12


Code:


Try
   'Your code here
Catch ex as exception
    'Your error handling code here
End Try



Share