📄 form2.frm
字号:
VERSION 5.00
Begin VB.Form Form2
Caption = "登录"
ClientHeight = 3480
ClientLeft = 60
ClientTop = 345
ClientWidth = 5115
Icon = "Form2.frx":0000
LinkTopic = "Form2"
MaxButton = 0 'False
ScaleHeight = 3480
ScaleWidth = 5115
StartUpPosition = 3 '窗口缺省
Begin VB.PictureBox Picture1
Height = 3495
Left = 0
Picture = "Form2.frx":0442
ScaleHeight = 3435
ScaleWidth = 5355
TabIndex = 0
Top = 0
Width = 5415
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 2400
TabIndex = 10
Top = 2160
Width = 615
End
Begin VB.CommandButton Command1
Caption = "登录"
Height = 375
Left = 1440
TabIndex = 9
Top = 2160
Width = 615
End
Begin VB.TextBox Text2
Height = 270
IMEMode = 3 'DISABLE
Left = 2040
PasswordChar = "*"
TabIndex = 5
Top = 1680
Width = 1215
End
Begin VB.TextBox Text1
Height = 270
Left = 2040
TabIndex = 4
Top = 1200
Width = 1215
End
Begin VB.Label Label7
BackStyle = 0 'Transparent
Caption = "指导老师:李华阳"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 255
Left = 2520
TabIndex = 11
Top = 2640
Width = 1815
End
Begin VB.Image Image1
Height = 480
Left = 240
Picture = "Form2.frx":FE41
Top = 1200
Width = 480
End
Begin VB.Label Label6
BackStyle = 0 'Transparent
Caption = "开发:02软件3班 王敬能"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 375
Left = 2520
TabIndex = 8
Top = 3000
Width = 2535
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "数 据 库:SQL server"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 255
Left = 120
TabIndex = 7
Top = 3000
Width = 2415
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "开发环境:Visual Basic"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 255
Left = 120
TabIndex = 6
Top = 2640
Width = 2535
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "密 码"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Left = 1080
TabIndex = 3
Top = 1680
Width = 975
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "用户名"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 375
Left = 1080
TabIndex = 2
Top = 1200
Width = 855
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "欢迎进入学生管理系统"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 615
Left = 360
TabIndex = 1
Top = 360
Width = 4575
End
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'Public LoginSucceeded As Boolean
Private Sub command1_click()
If Text1.Text = "wjn0025245" And Text2.Text = "0025245" Then
Form1.Visible = True
Unload Me
' Form2.Visible = False
'LoginSucceeded = ture
'Form1.Show vbModal, Me
Else
MsgBox "你输入的密码不正确,请尝试重新输入!", , "提示"
Text1.SetFocus
End If
End Sub
Private Sub command2_click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -