15 lines
394 B
VB.net
15 lines
394 B
VB.net
Friend Module Program
|
|
|
|
<STAThread()>
|
|
Friend Sub Main(args As String())
|
|
Application.SetHighDpiMode(HighDpiMode.SystemAware)
|
|
Application.EnableVisualStyles()
|
|
Application.SetCompatibleTextRenderingDefault(False)
|
|
Using splash As New SplashForm()
|
|
splash.ShowDialog()
|
|
End Using
|
|
Application.Run(New Form1)
|
|
End Sub
|
|
|
|
End Module
|