📄 form11.frm
字号:
VERSION 5.00
Begin VB.Form frmTestType
BackColor = &H00FFC0C0&
Caption = "在线测试"
ClientHeight = 3150
ClientLeft = 60
ClientTop = 390
ClientWidth = 4680
LinkTopic = "Form11"
ScaleHeight = 3150
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
WindowState = 2 'Maximized
Begin VB.PictureBox Picture1
Height = 9735
Left = 2520
Picture = "Form11.frx":0000
ScaleHeight = 9675
ScaleWidth = 9075
TabIndex = 6
Top = 1080
Width = 9135
End
Begin VB.CommandButton cmdOK
Caption = "确定"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 13560
TabIndex = 5
Top = 7080
Width = 2055
End
Begin VB.CommandButton cmdReturn
Caption = "返回"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 13560
TabIndex = 4
Top = 9960
Width = 2055
End
Begin VB.CommandButton cmdCancel
Caption = "取消"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 13560
TabIndex = 3
Top = 8520
Width = 2055
End
Begin VB.Frame Frame1
BackColor = &H00FFC0C0&
Caption = "题型"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3495
Left = 12600
TabIndex = 0
Top = 2280
Width = 3855
Begin VB.OptionButton optTian
BackColor = &H00FFC0C0&
Caption = "填空题"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 1200
TabIndex = 2
Top = 2040
Width = 2175
End
Begin VB.OptionButton optDan
BackColor = &H00FFC0C0&
Caption = "单选题"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 1200
TabIndex = 1
Top = 720
Width = 2295
End
End
End
Attribute VB_Name = "frmTestType"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
optDan.Value = False
optTian.Value = False
End Sub
Private Sub cmdOK_Click()
If optDan.Value = True Then
frmDanxuan.Show
frmDanxuan.Visible = True
Else
frmTiankong.Show
frmTiankong.Visible = True
End Sub
Private Sub cmdReturn_Click()
Unload Me
frmOdinaryUser.Show
End Sub
Private Sub Form_Unload(Cancel As Integer)
Rs.Close
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -