1234567891011121314151617181920212223242526272829303132333435363738 |
-
- Option Strict On
- Option Explicit On
- Namespace My
-
-
-
-
-
-
- Partial Friend Class MyApplication
-
- <Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
- Public Sub New()
- MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
- Me.IsSingleInstance = false
- Me.EnableVisualStyles = true
- Me.SaveMySettingsOnExit = true
- Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
- End Sub
-
- <Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
- Protected Overrides Sub OnCreateMainForm()
- Me.MainForm = Global.Example.Form1
- End Sub
- End Class
- End Namespace
|