📄 frmsetpassword.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Begin VB.Form FrmSetPassword
Caption = "数据库密码设置"
ClientHeight = 4395
ClientLeft = 60
ClientTop = 450
ClientWidth = 4080
FillColor = &H80000012&
BeginProperty Font
Name = "仿宋_GB2312"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
ScaleHeight = 4395
ScaleWidth = 4080
StartUpPosition = 3 'Windows Default
Begin MSAdodcLib.Adodc Adodc1
Height = 450
Left = 1560
Top = 3960
Visible = 0 'False
Width = 1815
_ExtentX = 3201
_ExtentY = 794
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 8
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = ""
OLEDBString = ""
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = ""
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "仿宋_GB2312"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.CommandButton CmdCancel
Caption = "取消"
Height = 375
Left = 2400
TabIndex = 9
Top = 3480
Width = 1335
End
Begin VB.CommandButton CmdPassword
Caption = "设置密码"
Height = 375
Left = 600
TabIndex = 8
Top = 3480
Width = 1215
End
Begin VB.TextBox TxtRegister
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
TabIndex = 7
Top = 2520
Width = 2055
End
Begin VB.TextBox TxtPasswordverify
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
TabIndex = 6
Top = 1800
Width = 2055
End
Begin VB.TextBox TxtPassword
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
TabIndex = 5
Top = 1080
Width = 2055
End
Begin VB.TextBox TxtUsername
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
TabIndex = 4
Top = 360
Width = 2055
End
Begin VB.Label Label6
Caption = "注意:以上各项必须都填写完整"
ForeColor = &H000000C0&
Height = 255
Left = 240
TabIndex = 10
Top = 3000
Width = 3375
End
Begin VB.Label Label4
Caption = "密码提示"
BeginProperty Font
Name = "楷体_GB2312"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0C000&
Height = 255
Left = 120
TabIndex = 3
Top = 2400
Width = 1095
End
Begin VB.Label Label3
Caption = "密码校验"
BeginProperty Font
Name = "仿宋_GB2312"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0C000&
Height = 255
Left = 120
TabIndex = 2
Top = 1800
Width = 1095
End
Begin VB.Label Label2
Caption = "密 码"
BeginProperty Font
Name = "仿宋_GB2312"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0C000&
Height = 255
Left = 240
TabIndex = 1
Top = 1080
Width = 615
End
Begin VB.Label Label1
Caption = "用户名"
BeginProperty Font
Name = "仿宋_GB2312"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0C000&
Height = 255
Left = 240
TabIndex = 0
Top = 360
Width = 855
End
End
Attribute VB_Name = "FrmSetPassword"
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 CmdPassword_Click()
Dim a As Integer, b As Integer
a = Len(TxtUsername.Text)
b = Len(TxtPassword.Text)
If TxtUsername.Text = "" Or TxtPassword.Text = "" Or TxtPasswordverify.Text = "" Or TxtRegister.Text = "" Then
MsgBox "您未全部填写完,请全部填写完!"
Else
If TxtPassword.Text = TxtPasswordverify.Text Then
MsgBox "密码设置成功!"
Username = TxtUsername.Text
Password = TxtPassword.Text
pw_register = TxtRegister.Text
Adodc1.Recordset.AddNew
Adodc1.Recordset("用户名") = TxtUsername.Text
Adodc1.Recordset("密码") = TxtPassword.Text
Adodc1.Recordset("密码提示") = TxtRegister.Text
Adodc1.Recordset.Update
Unload Me
Else
MsgBox "密码校验错误,请重新输入!"
End If
End If
End Sub
Private Sub Form_Load()
Dim str As String
'动态连接数据库
str = App.Path
Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & str & "\db1.mdb;Persist Security Info=False"
Adodc1.CommandType = adCmdText
Adodc1.RecordSource = "select * from 数据库密码设置"
Adodc1.Refresh
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -