📄 form6.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Form6
Caption = "Form6"
ClientHeight = 6810
ClientLeft = 60
ClientTop = 345
ClientWidth = 7665
LinkTopic = "Form6"
Picture = "Form6.frx":0000
ScaleHeight = 6810
ScaleWidth = 7665
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer3
Interval = 60
Left = 4200
Top = 3600
End
Begin VB.Timer Timer2
Interval = 60
Left = 5760
Top = 1680
End
Begin VB.Timer Timer1
Interval = 60
Left = 2040
Top = 4800
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 255
Left = -120
TabIndex = 1
Top = 6600
Width = 7815
_ExtentX = 13785
_ExtentY = 450
_Version = 393216
Appearance = 1
End
Begin VB.Label Label4
AutoSize = -1 'True
BackColor = &H8000000E&
BackStyle = 0 'Transparent
Caption = "欢迎进入河南理工大学!"
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 960
TabIndex = 4
Top = 2760
Width = 5445
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Left = 2400
TabIndex = 3
Top = 5880
Width = 615
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "已加载:"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1200
TabIndex = 2
Top = 5880
Width = 1095
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "欢迎进入学生考试系统"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 495
Left = 3960
TabIndex = 0
Top = 1080
Width = 4935
End
End
Attribute VB_Name = "Form6"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()
If ProgressBar1.Value < 100 Then
ProgressBar1.Value = ProgressBar1.Value + 1
Label3.Caption = ProgressBar1.Value
Else: Timer1.Interval = 0
End If
If Label3.Caption = 100 Then
Form4.Show
Form6.Hide
End If
End Sub
Private Sub Timer2_Timer()
If Label1.Left > 0 Then
Label1.Left = Label1.Left - 150
End If
If Label1.Left < 0 Then
Label1.Left = 7080
End If
End Sub
Private Sub Timer3_Timer()
If Label4.Left > 0 Then
Label4.Left = Label4.Left + 150
End If
If Label4.Left > 7080 Then
Label4.Left = 1
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -