Hi greenbriar,
I don't own the book so forgive me if I am looking in the wrong place, but I assume you are looking at Sub LoadProjects in Admin.
vb in Chapter 6 or 7?
Code:
Private Sub LoadProjects()
'Declare variables
Dim objListViewItem As ListViewItem
'Initialize a new instance of the data access base class
Using objData As New WDABase
Try
' ... Project load code ...
Catch ExceptionErr As Exception
MessageBox.Show(ExceptionErr.Message, strAppTitle)
End Try
End Using
'Cleanup
objListViewItem = Nothing
End Sub
The code download says that ExceptionErr is the name given to the exception variable in the Try...Catch block, so it looks like you've just got a typo in your code - I did notice in your post you called it ExceptionIErr, so it may just be the extra "I" which needs to be removed.
If not, please post your complete LoadProjects method so we can take a proper look.
Phil