📄 formguanliyuan.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Begin VB.Form Form管理员登录
Caption = "管理员登录"
ClientHeight = 5580
ClientLeft = 3840
ClientTop = 2940
ClientWidth = 7740
LinkTopic = "Form1"
MaxButton = 0 'False
Picture = "Formguanliyuan.frx":0000
ScaleHeight = 5580
ScaleWidth = 7740
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text2
Height = 495
IMEMode = 3 'DISABLE
Left = 4920
PasswordChar = "*"
TabIndex = 7
Top = 3000
Width = 2535
End
Begin VB.TextBox Text1
Height = 495
Left = 4920
TabIndex = 6
Top = 2040
Width = 2535
End
Begin VB.CommandButton Command3
BackColor = &H00FFC0C0&
Caption = "返回"
BeginProperty Font
Name = "华文行楷"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 4680
Style = 1 'Graphical
TabIndex = 3
Top = 4680
Width = 1335
End
Begin MSAdodcLib.Adodc Adodc1
Height = 615
Left = 360
Top = 4560
Visible = 0 'False
Width = 1695
_ExtentX = 2990
_ExtentY = 1085
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 2
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=employer;Data Source=(local)"
OLEDBString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=employer;Data Source=(local)"
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "usermessege"
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.CommandButton Command2
BackColor = &H00FFC0C0&
Caption = "退 出"
BeginProperty Font
Name = "华文行楷"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 6240
Style = 1 'Graphical
TabIndex = 2
Top = 4680
Width = 1335
End
Begin VB.CommandButton Command1
BackColor = &H00FFC0C0&
Caption = "登 录"
Default = -1 'True
BeginProperty Font
Name = "华文行楷"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3240
Style = 1 'Graphical
TabIndex = 1
Top = 4680
Width = 1215
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 = &H00FF0000&
Height = 735
Left = 3360
TabIndex = 5
Top = 3120
Width = 1575
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "管理员名:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 3600
TabIndex = 4
Top = 2160
Width = 1455
End
Begin VB.Label Label3
BackColor = &H00FFFFC0&
BackStyle = 0 'Transparent
Caption = "管理员登录"
BeginProperty Font
Name = "宋体"
Size = 48
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 975
Left = 2880
TabIndex = 0
Top = 240
Width = 5055
End
End
Attribute VB_Name = "Form管理员登录"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Trim(Text1.Text = "") Then
MsgBox "管理员名不能为空,请输入用户名!", vbOKOnly + vbExclamation, "警告"
Exit Sub
End If
Adodc1.CommandType = adCmdText
Adodc1.RecordSource = "select * from usermessege where Uname='" & Trim(Text1.Text) & "' And Utype = '管理员'"
Adodc1.Refresh
If Adodc1.Recordset.EOF = True Then
MsgBox "无此管理员!", vbOKOnly + vbExclamation, "警告"
Text1.Text = ""
Text2.Text = ""
Text1.SetFocus
Exit Sub
End If
If Text2.Text = "" Then
MsgBox "密码不能为空", vbOKOnly + vbExclamation, "警告"
Text2.SetFocus
Exit Sub
End If
'判断输入密码是否正确
If Trim(Text2.Text) <> Trim(Adodc1.Recordset.Fields("Upassword").Value) Then
MsgBox "输入的密码不正确,请重新输入!", vbOKOnly + vbExclamation, "警告"
Text2.Text = ""
Text2.SetFocus
Exit Sub
End If
Form管理员管理.Show
Me.Hide
End Sub
Private Sub Command3_Click()
Form用户类型选择.Show
Me.Hide
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -