📄 xgmima.frm
字号:
VERSION 5.00
Begin VB.Form xgmima
BorderStyle = 3 'Fixed Dialog
Caption = "请修改密码"
ClientHeight = 3210
ClientLeft = 45
ClientTop = 435
ClientWidth = 4560
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3210
ScaleWidth = 4560
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text3
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2400
TabIndex = 0
Top = 480
Width = 1455
End
Begin VB.CommandButton Command2
Caption = "关 闭"
Height = 375
Left = 2400
TabIndex = 4
Top = 2400
Width = 975
End
Begin VB.CommandButton Command1
Caption = "确 定"
Default = -1 'True
Height = 375
Left = 960
TabIndex = 3
Top = 2400
Width = 975
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2400
TabIndex = 2
Top = 1680
Width = 1455
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2400
TabIndex = 1
Top = 1080
Width = 1455
End
Begin VB.Label Label3
Caption = "请输入当前密码:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 720
TabIndex = 7
Top = 600
Width = 1695
End
Begin VB.Label Label2
Caption = "请确认密码:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 720
TabIndex = 6
Top = 1800
Width = 1335
End
Begin VB.Label Label1
Caption = "请输入新密码:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 720
TabIndex = 5
Top = 1200
Width = 1695
End
End
Attribute VB_Name = "xgmima"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Text3.Text = dl.Text4.Text And Text1.Text = Text2.Text Then
dl.Text4.Text = Text1.Text
dl.Command3 = True
MsgBox "修改成功!"
Else
MsgBox "你两次输入的密码不一致,请重新输入!"
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Text3.SetFocus
End If
End Sub
Private Sub Command2_Click()
Unload Me
system.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -