📄 frmselectlogin.frm
字号:
VERSION 5.00
Begin VB.Form frmSelectLogin
BorderStyle = 3 'Fixed Dialog
Caption = "选择登陆"
ClientHeight = 2700
ClientLeft = 45
ClientTop = 330
ClientWidth = 4680
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2700
ScaleWidth = 4680
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "退出"
Height = 465
Left = 2700
TabIndex = 4
Top = 1770
Width = 1185
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 465
Left = 450
TabIndex = 3
Top = 1770
Width = 1185
End
Begin VB.OptionButton Option2
Caption = "老师登陆"
Height = 315
Left = 2760
TabIndex = 1
Top = 1110
Width = 2055
End
Begin VB.OptionButton Option1
Caption = "考生登陆"
Height = 405
Left = 300
TabIndex = 0
Top = 1050
Width = 1215
End
Begin VB.Label Label1
Caption = "请选择登陆身份:"
Height = 315
Left = 300
TabIndex = 2
Top = 690
Width = 1845
End
Begin VB.Image Image1
Height = 480
Left = 210
Picture = "frmSelectLogin.frx":0000
Top = 120
Width = 480
End
End
Attribute VB_Name = "frmSelectLogin"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
If Option1.Value Then
Unload Me
frmStudentLogin.Show 1
Else
Unload Me
frmLogin.Show 1
End If
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -