Partial Public Class App
Inherits Application
Public Sub New()
InitializeComponent()
End Sub
Private Sub App_Startup(ByVal o As Object, ByVal e As StartupEventArgs) Handles Me.Startup
' The application has started.
End Sub
Private Sub App_Exit(ByVal o As Object, ByVal e As EventArgs) Handles Me.Exit
' The application is about to stop running.
End Sub
End Class