A
Alex Glass
Module Init
Public Sub Main()
Try
Application.Run(New AccountsForm)
Catch ex As Exception
MsgBox("The application has experienced a critical error and now must
terminate!", MsgBoxStyle.Critical)
LogException(ex)
End Try
End Sub
End Module
----------------------------------------------------------------------------
---------------------------------------
When an exeception fires inside of the accounts form a window pops up that
asks me if i want to continue or quit the application. How do I prevent
this window with the exception info from appearing?
-Alex GLass
Public Sub Main()
Try
Application.Run(New AccountsForm)
Catch ex As Exception
MsgBox("The application has experienced a critical error and now must
terminate!", MsgBoxStyle.Critical)
LogException(ex)
End Try
End Sub
End Module
----------------------------------------------------------------------------
---------------------------------------
When an exeception fires inside of the accounts form a window pops up that
asks me if i want to continue or quit the application. How do I prevent
this window with the exception info from appearing?
-Alex GLass