📄 startup.vb
字号:
'
' Chapter 02 - Completed Solution
'
' MCSD Guide to Developing Desktop Applications
' with Microsoft Visual Basic .NET
'
' Copyright (C) 2004 Course Technology
' All rights reserved.
Option Strict On
Option Explicit On
' This module is designated as the startup model. Thus, the statements
' in the Sub Main procedure will execute when the program starts.
Module Startup
Public Sub Main()
Dim frmSplashNew As New frmSplash()
Dim frmMainNew As New frmMain()
frmSplashNew.ShowDialog()
frmMainNew.ShowDialog()
End Sub
End Module
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -