📄 editpwd.frm
字号:
VERSION 5.00
Begin VB.Form editpwd
Caption = "修改密码"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdcancel
Caption = "取消"
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 2520
TabIndex = 5
Top = 2280
Width = 1095
End
Begin VB.CommandButton cmdok
Caption = "确定"
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 960
TabIndex = 4
Top = 2280
Width = 1095
End
Begin VB.TextBox txtpwd2
Height = 495
IMEMode = 3 'DISABLE
Left = 2160
PasswordChar = "*"
TabIndex = 3
Top = 1320
Width = 1695
End
Begin VB.TextBox txtpwd1
Height = 495
IMEMode = 3 'DISABLE
Left = 2160
PasswordChar = "*"
TabIndex = 2
Top = 480
Width = 1695
End
Begin VB.Label Label2
Alignment = 2 'Center
Caption = "请确认密码"
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 600
TabIndex = 1
Top = 1440
Width = 1335
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "请输入密码"
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 600
TabIndex = 0
Top = 600
Width = 1335
End
End
Attribute VB_Name = "editpwd"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdcancel_Click()
Unload Me
End Sub
Private Sub cmdok_Click()
Dim txtsql, msgtext As String
Dim mrc As ADODB.Recordset
If Trim(txtpwd1.Text) <> Trim(txtpwd2.Text) Then
MsgBox "两次输入的密码不一样,请确认!", vbOKOnly + vbExclamation, "警告"
txtpwd1.SetFocus
txtpwd1.Text = ""
txtpwd2.Text = ""
Else
If txtpwd1.Text = "" Then
MsgBox "密码不能为空!", vbOKOnly + vbExclamation, "警告"
txtpwd1.SetFocus
txtpwd2.Text = ""
Else
txtsql = "select * from operator where username='" & username & "'"
Set mrc = ExecuteSQL(txtsql, msgtext)
mrc.Fields(1) = Trim(txtpwd1.Text)
mrc.Update
mrc.Close
MsgBox "密码成功修改!", vbOKOnly + vbExclamation, "修改密码"
Unload Me
End If
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -