📄 qidong.frm
字号:
VERSION 5.00
Begin VB.Form qidong
Caption = "试卷生成和评分系统"
ClientHeight = 1875
ClientLeft = 60
ClientTop = 450
ClientWidth = 6240
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 1875
ScaleWidth = 6240
StartUpPosition = 2 'CenterScreen
Begin VB.Frame Frame1
Caption = "用户选项"
Height = 1575
Left = 120
TabIndex = 0
Top = 120
Width = 6015
Begin VB.CommandButton Command1
Caption = "教师登录"
Height = 615
Index = 0
Left = 120
TabIndex = 3
Top = 480
Width = 1695
End
Begin VB.CommandButton Command1
Caption = "学生登录"
Height = 615
Index = 1
Left = 2040
TabIndex = 2
Top = 480
Width = 1695
End
Begin VB.CommandButton Command2
Caption = "退出"
Height = 615
Left = 3960
TabIndex = 1
Top = 480
Width = 1695
End
End
End
Attribute VB_Name = "qidong"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click(Index As Integer)
Dim i As Integer
i = Index
Select Case i
Case 0
manager.Show
Case 1
student.Show
End Select
Unload Me
End Sub
Private Sub Command2_Click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -