frmsplash.frm

来自「用于远程视频监控的源码」· FRM 代码 · 共 60 行

FRM
60
字号
VERSION 5.00
Begin VB.Form frmsplash 
   BorderStyle     =   0  'None
   ClientHeight    =   5070
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   7815
   LinkTopic       =   "Form3"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "frmsplash.frx":0000
   ScaleHeight     =   5070
   ScaleWidth      =   7815
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Begin VB.Timer Timer1 
      Interval        =   8000
      Left            =   6720
      Top             =   4425
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "Loading TAG... (not made for commercial use/distribution)"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   12
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H000000FF&
      Height          =   360
      Left            =   480
      TabIndex        =   0
      Top             =   270
      Width           =   7185
   End
End
Attribute VB_Name = "frmsplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Timer1.Enabled = True
mmOpen (App.Path + "\sounds\BHC.mid")
mmPlay
End Sub

Private Sub Timer1_Timer() 'timer makes the inro/splash screen disapear
 Timer1.Enabled = False
   Load Form2
    Me.Hide
   Form2.Show
 Unload Me
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?