📄 frmexam.frm
字号:
VERSION 5.00
Begin VB.Form frmExam
BorderStyle = 1 'Fixed Single
Caption = "考试系统"
ClientHeight = 5550
ClientLeft = 2265
ClientTop = 1770
ClientWidth = 7470
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5550
ScaleWidth = 7470
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Height = 750
Index = 0
Left = 2655
TabIndex = 9
Top = 0
Width = 4785
Begin VB.CommandButton cmdChoose
Caption = "选择题"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 135
TabIndex = 11
Top = 225
Width = 2130
End
Begin VB.CommandButton cmdFillBlank
Caption = "填空题"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 2520
TabIndex = 10
Top = 225
Width = 2130
End
End
Begin VB.Frame Frame1
Height = 750
Index = 2
Left = 45
TabIndex = 7
Top = 0
Width = 2580
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "考生文件夹C:\Exam\00000000"
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 390
Left = 270
TabIndex = 8
Top = 225
Width = 1935
End
End
Begin VB.Frame Frame3
BackColor = &H00FFFFFF&
Height = 4695
Left = 45
TabIndex = 0
Top = 810
Width = 7350
Begin VB.Line Line3
BorderColor = &H00808080&
BorderWidth = 4
X1 = -45
X2 = 7290
Y1 = 45
Y2 = 45
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "考生须知"
BeginProperty Font
Name = "华文行楷"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Left = 2880
TabIndex = 6
Top = 360
Width = 1335
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "一、考试时间:计算机等级考试三级网络技术笔试时间120分钟,满分为100分。"
Height = 240
Left = 540
TabIndex = 5
Top = 1080
Width = 6450
End
Begin VB.Label Label4
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "二、考试内容:计算机等级考试三级网络技术笔试的主要内容及分值分布:"
Height = 180
Left = 540
TabIndex = 4
Top = 1755
Width = 5940
End
Begin VB.Label Label5
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "选择题:(10分,共10题)"
Height = 180
Left = 2520
TabIndex = 3
Top = 2250
Width = 2160
End
Begin VB.Label Label6
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "填空题:(10分,共5题)"
Height = 180
Left = 2520
TabIndex = 2
Top = 2655
Width = 2070
End
Begin VB.Label Label7
BackStyle = 0 'Transparent
Caption = "三、操作指南:单击相应的试题类型按钮,或从菜单选择相应的选项,就可以进入做题。"
Height = 675
Left = 540
TabIndex = 1
Top = 3015
Width = 6480
End
End
Begin VB.Line Line5
BorderColor = &H00808080&
BorderWidth = 4
Index = 1
X1 = 45
X2 = 45
Y1 = 810
Y2 = 5490
End
Begin VB.Line Line5
BorderColor = &H00808080&
BorderWidth = 4
Index = 0
X1 = 7425
X2 = 7425
Y1 = 855
Y2 = 5535
End
Begin VB.Line Line6
BorderColor = &H00808080&
BorderWidth = 4
X1 = 90
X2 = 7425
Y1 = 5535
Y2 = 5535
End
Begin VB.Menu munTest
Caption = "考试项目(&T)"
Begin VB.Menu line1
Caption = "-"
End
Begin VB.Menu munChoose
Caption = "选择题"
End
Begin VB.Menu munFillBlank
Caption = "填空题"
End
Begin VB.Menu line2
Caption = "-"
End
Begin VB.Menu munEnd
Caption = "交卷"
End
End
Begin VB.Menu munHelp
Caption = "帮助(&H)"
Begin VB.Menu munStat
Caption = "考试说明..."
End
End
End
Attribute VB_Name = "frmExam"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdChoose_Click()
frmTime.lblTitle.Caption = "显示考试说明窗体"
frmExamChoose.Show
Unload Me
End Sub
Private Sub cmdFillBlank_Click()
frmTime.lblTitle.Caption = "显示考试说明窗体"
frmFillBlank.Show
Unload Me
End Sub
Private Sub munChoose_Click()
cmdChoose_Click
End Sub
Private Sub munEnd_Click()
If MsgBox("时间还没到,真的要交卷吗?", vbYesNo + vbInformation, "提示") = vbYes Then
frmWiat.Show
Unload Me
Unload frmTime
Unload frmExamChoose
Unload frmFillBlank
End If
End Sub
Private Sub munFillBlank_Click()
cmdFillBlank_Click
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -