📄 frmloading.frm
字号:
VERSION 5.00
Begin VB.Form frmloading
BorderStyle = 0 'None
ClientHeight = 3270
ClientLeft = 0
ClientTop = 0
ClientWidth = 4950
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "frmloading.frx":0000
ScaleHeight = 3270
ScaleWidth = 4950
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Timer Timer1
Interval = 500
Left = 120
Top = 240
End
Begin VB.Image ball
Height = 960
Left = 3840
Picture = "frmloading.frx":52E3A
Top = 120
Width = 960
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "Desktop Sports 2002"
Height = 255
Left = 120
TabIndex = 5
Top = 3000
Width = 1575
End
Begin VB.Shape Shape1
BorderWidth = 5
Height = 3255
Left = 0
Top = 0
Width = 4935
End
Begin VB.Label logo
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Its in the game"
BeginProperty Font
Name = "Impact"
Size = 15.75
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Index = 4
Left = 360
TabIndex = 4
Top = 2520
Visible = 0 'False
Width = 4455
End
Begin VB.Label logo
BackStyle = 0 'Transparent
BeginProperty Font
Name = "Impact"
Size = 15.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Index = 3
Left = 2520
TabIndex = 3
Top = 0
Visible = 0 'False
Width = 2535
End
Begin VB.Label logo
BackStyle = 0 'Transparent
Caption = "Sports"
BeginProperty Font
Name = "Showcard Gothic"
Size = 24
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Index = 2
Left = 1800
TabIndex = 2
Top = 1920
Visible = 0 'False
Width = 1935
End
Begin VB.Label logo
BackStyle = 0 'Transparent
Caption = "T"
BeginProperty Font
Name = "Showcard Gothic"
Size = 90
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 2415
Index = 1
Left = 2160
TabIndex = 1
Top = 0
Visible = 0 'False
Width = 1335
End
Begin VB.Label logo
BackStyle = 0 'Transparent
Caption = "D"
BeginProperty Font
Name = "Showcard Gothic"
Size = 90
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 2655
Index = 0
Left = 960
TabIndex = 0
Top = 0
Visible = 0 'False
Width = 1335
End
End
Attribute VB_Name = "frmloading"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim bob As Integer
Private Sub Form_Click()
frmSplash1.Show
Timer1.Enabled = False
frmloading.Hide
End Sub
Private Sub Form_Load()
bob = -1
End Sub
Private Sub Timer1_Timer()
bob = bob + 1
If bob < 5 Then
logo(bob).Visible = True
End If
If bob > 7 Then
frmSplash1.Show
Timer1.Enabled = False
frmloading.Hide
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -