📄 exit.frm
字号:
VERSION 5.00
Begin VB.Form Form6
BackColor = &H00E0E0E0&
BorderStyle = 1 'Fixed Single
Caption = " 考试结束"
ClientHeight = 4050
ClientLeft = 3045
ClientTop = 1125
ClientWidth = 7380
Icon = "exit.frx":0000
LinkTopic = "Form10"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4050
ScaleWidth = 7380
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command1
BackColor = &H00C0C0C0&
Caption = "关闭"
Height = 375
Left = 5880
Style = 1 'Graphical
TabIndex = 3
Top = 3240
Width = 855
End
Begin VB.Timer Timer1
Interval = 1000
Left = 6240
Top = 2640
End
Begin VB.Frame Frame1
BackColor = &H00E0E0E0&
Height = 2535
Left = 480
TabIndex = 0
Top = 600
Width = 6375
Begin VB.Label Label2
AutoSize = -1 'True
BackColor = &H00E0E0E0&
Caption = "label2"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 315
Left = 600
TabIndex = 2
Top = 480
Width = 990
End
Begin VB.Label Label1
AutoSize = -1 'True
BackColor = &H00E0E0E0&
Caption = "祝你考试成功!"
BeginProperty Font
Name = "黑体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00404040&
Height = 720
Left = 840
TabIndex = 1
Top = 1320
Width = 5160
End
End
Begin VB.Label Label4
BackColor = &H00E0E0E0&
Caption = "Label4"
BeginProperty Font
Name = "楷体_GB2312"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 840
TabIndex = 5
Top = 3360
Width = 4815
End
Begin VB.Label Label3
BackColor = &H00E0E0E0&
Caption = "计算机考试系统 "
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 600
TabIndex = 4
Top = 240
Width = 3255
End
End
Attribute VB_Name = "Form6"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim time4 As Integer
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Click()
Unload Me
End Sub
Private Sub Form_Load()
Label2.Caption = xm & "同学: " & "文件已经保存!"
time4 = 60
Label4.Caption = "你共得了" & sum & "分"
End Sub
Private Sub Timer1_Timer()
If time4 < 0 Then
Unload Me
Else
time4 = time4 - 1
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -