' ' Created by SharpDevelop. ' User: 14manvilleA ' Date: 27/09/2019 ' Time: 10:49 ' ' To change this template use Tools | Options | Coding | Edit Standard Headers. ' Imports Microsoft.VisualBasic.ApplicationServices Namespace My ' This file controls the behaviour of the application. Partial Class MyApplication Public Sub New() MyBase.New(AuthenticationMode.Windows) Me.IsSingleInstance = False Me.EnableVisualStyles = True Me.SaveMySettingsOnExit = True Me.ShutDownStyle = ShutdownMode.AfterMainFormCloses End Sub Protected Overrides Sub OnCreateMainForm() Me.MainForm = My.Forms.MainForm End Sub End Class End Namespace