?? frmsplash.frm
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -