, - , Imports . Import, , :
Imports System
Imports System.Windows.Forms
Public Shared Sub MyApplicationInitialization()
AddHandler System.Windows.Forms.Application.ThreadException, AddressOf MyThreadExceptionHandler
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException)
AddHandler System.AppDomain.CurrentDomain.UnhandledException, AddressOf MyUnhandledExceptionHandler
End Sub
, AppDomain System Application System.Windows.Forms.
, , AddressOf. :
Sub MyUnhandledExceptionHandler(ByVal sender As Object, ByVal e As UnhandledExceptionEventArgs)
'your logic here
End Sub
Sub MyThreadExceptionHandler(ByVal sender As Object, ByVal e As ThreadExceptionEventArgs)
'your logic here
End Sub