startup.vb

来自「这是一个飞机订票的软件」· VB 代码 · 共 25 行

VB
25
字号
'
' 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 + =
减小字号Ctrl + -
显示快捷键?