OCMachineTransferer/OCUploadDownloadServer/OCUploadDownloadServer/Program.vb
2019-12-26 16:12:23 +00:00

27 lines
655 B
VB.net

'
' Created by SharpDevelop.
' User: Alfred
' Date: 15/07/2018
' Time: 10:01
'
' 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