📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "考生登陆"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "取消"
Height = 495
Left = 2400
TabIndex = 5
Top = 2400
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "登陆"
Height = 495
Left = 600
TabIndex = 4
Top = 2400
Width = 1215
End
Begin VB.TextBox Text2
Height = 495
Left = 1800
TabIndex = 2
Top = 1200
Width = 1095
End
Begin VB.TextBox Text1
Height = 495
Left = 1800
TabIndex = 0
Top = 360
Width = 1095
End
Begin VB.Label Label2
Alignment = 1 'Right Justify
Caption = "姓名"
Height = 495
Left = 480
TabIndex = 3
Top = 1200
Width = 1095
End
Begin VB.Label Label1
Alignment = 1 'Right Justify
Caption = "学号"
Height = 495
Left = 480
TabIndex = 1
Top = 360
Width = 1095
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Call connect
sql = "select * from student where Stu_No='" & Text1.Text & "' and Stu_Name='" & Text2.Text & "'"
Set adors = adocon.Execute(sql)
If adors.EOF Then
MsgBox ("非法用户")
End
End If
MsgBox ("登陆成功,按确定开始答题,考试时间为1分钟!")
xh = Text1.Text
Form2.Show
Form1.Hide
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -