Monday, August 3, 2009

Chapter 8 - exception handling

exception handling - handling errors

Try

intNumber = txtTextBox.Text
Catch ex As Exception


End Try

Try
intNumber = txtTextBox.Text
Catch ThisException As Exception<---> exception is a class
End Try

pg 592 - different exception types

Now to attempt the chapter.

No comments:

Post a Comment