I
Ivan Weiss
Good morning all,
I am trying to access an access database to authenticate users upon
logging into my application.
Something is throwing an excecption. My error handling code should
display this message in a msgbox. However, the messagebox is always
empty.
Here is my error handling code.
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.OKOnly)
Finally
oleConn.Close()
End Try
Return bolTemp
End Function
Am I missing something? Do I have to include any system libraries for
error handling? Very confusing.....
Thanks in advance!
-Ivan
I am trying to access an access database to authenticate users upon
logging into my application.
Something is throwing an excecption. My error handling code should
display this message in a msgbox. However, the messagebox is always
empty.
Here is my error handling code.
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.OKOnly)
Finally
oleConn.Close()
End Try
Return bolTemp
End Function
Am I missing something? Do I have to include any system libraries for
error handling? Very confusing.....
Thanks in advance!
-Ivan