📄 form5.frm
字号:
VERSION 5.00
Begin VB.Form Form5
Caption = "修改密码出口"
ClientHeight = 4035
ClientLeft = 60
ClientTop = 345
ClientWidth = 6975
Icon = "Form5.frx":0000
LinkTopic = "Form5"
ScaleHeight = 4035
ScaleWidth = 6975
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "取消"
Height = 495
Left = 3600
TabIndex = 7
Top = 2760
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 495
Left = 1200
TabIndex = 6
Top = 2760
Width = 1455
End
Begin VB.TextBox Text3
Height = 375
IMEMode = 3 'DISABLE
Left = 2880
PasswordChar = "*"
TabIndex = 2
Top = 2040
Width = 2415
End
Begin VB.TextBox Text2
Height = 375
IMEMode = 3 'DISABLE
Left = 2880
PasswordChar = "*"
TabIndex = 1
Top = 1440
Width = 2415
End
Begin VB.TextBox Text1
Height = 375
IMEMode = 3 'DISABLE
Left = 2880
PasswordChar = "*"
TabIndex = 0
Top = 840
Width = 2415
End
Begin VB.Label Label3
Caption = "请输入确认密码"
Height = 375
Left = 840
TabIndex = 5
Top = 2040
Width = 1575
End
Begin VB.Label Label2
Caption = "请输入新密码"
Height = 375
Left = 840
TabIndex = 4
Top = 1440
Width = 1455
End
Begin VB.Label Label1
Caption = "请输入原始密码"
Height = 375
Left = 840
TabIndex = 3
Top = 840
Width = 1455
End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If ((pw$ = Form5.Text1.Text) And (Form5.Text2.Text = Form5.Text3.Text)) Then
pw$ = Form5.Text2.Text
MsgBox "修改成功"
Else
MsgBox "修改不成功"
End If
End Sub
Private Sub Command2_Click()
Form5.Hide
Form1.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -