📄 formyonghu.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Begin VB.Form Form用户登录
Caption = "用户登录"
ClientHeight = 5580
ClientLeft = 3630
ClientTop = 2730
ClientWidth = 7740
LinkTopic = "Form1"
MaxButton = 0 'False
Picture = "Formyonghu.frx":0000
ScaleHeight = 5580
ScaleWidth = 7740
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text2
Height = 495
IMEMode = 3 'DISABLE
Left = 5040
PasswordChar = "*"
TabIndex = 6
Top = 2880
Width = 2295
End
Begin VB.TextBox Text1
Height = 495
Left = 5040
TabIndex = 5
Top = 1920
Width = 2295
End
Begin MSAdodcLib.Adodc Adodc1
Height = 375
Left = 240
Top = 4680
Visible = 0 'False
Width = 1215
_ExtentX = 2143
_ExtentY = 661
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 cmdend
BackColor = &H00FFC0C0&
Caption = "退 出"
BeginProperty Font
Name = "华文行楷"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 6240
Style = 1 'Graphical
TabIndex = 3
Top = 4560
Width = 1335
End
Begin VB.CommandButton Command2
BackColor = &H00FFC0C0&
Caption = "新用户注册"
BeginProperty Font
Name = "华文行楷"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3120
Style = 1 'Graphical
TabIndex = 2
Top = 4560
Width = 1335
End
Begin VB.CommandButton cmdok
BackColor = &H00FFC0C0&
Caption = "登 录"
Default = -1 'True
BeginProperty Font
Name = "华文行楷"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 4680
Style = 1 'Graphical
TabIndex = 1
Top = 4560
Width = 1335
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 = &H00FF0000&
Height = 375
Left = 3600
TabIndex = 7
Top = 3000
Width = 1335
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 = 375
Left = 3840
TabIndex = 4
Top = 2040
Width = 1215
End
Begin VB.Label Label1
BackColor = &H00FFFF80&
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 = 1095
Left = 3720
TabIndex = 0
Top = 120
Width = 4095
End
End
Attribute VB_Name = "Form用户登录"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdend_Click()
End
End Sub
Private Sub cmdok_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
Adodc1.UserName = Trim(Text1.Text)
Form用户管理.Show
Me.Hide
End Sub
Private Sub Command2_Click()
Form新用户注册.Show
Me.Hide
End Sub
Private Sub Form_Load()
Text1.Text = ""
Text2.Text = ""
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -