frmChangPass.frm
上传用户:yexiandon
上传日期:2022-07-12
资源大小:895k
文件大小:4k
源码类别:

百货/超市行业

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmChangPass 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "修改密码"
  5.    ClientHeight    =   2535
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   4680
  9.    Icon            =   "frmChangPass.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   2535
  14.    ScaleWidth      =   4680
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   3  '窗口缺省
  17.    Begin VB.CommandButton CancelButton 
  18.       Cancel          =   -1  'True
  19.       Caption         =   "取消"
  20.       Height          =   330
  21.       Left            =   2640
  22.       TabIndex        =   8
  23.       Top             =   1980
  24.       Width           =   975
  25.    End
  26.    Begin VB.CommandButton OKButton 
  27.       Caption         =   "确定"
  28.       Default         =   -1  'True
  29.       Height          =   330
  30.       Left            =   1440
  31.       TabIndex        =   7
  32.       Top             =   1980
  33.       Width           =   975
  34.    End
  35.    Begin VB.TextBox txtConfirm 
  36.       Height          =   270
  37.       IMEMode         =   3  'DISABLE
  38.       Left            =   1320
  39.       PasswordChar    =   "*"
  40.       TabIndex        =   6
  41.       Top             =   1455
  42.       Width           =   2655
  43.    End
  44.    Begin VB.TextBox txtNewPass 
  45.       Height          =   270
  46.       IMEMode         =   3  'DISABLE
  47.       Left            =   1320
  48.       PasswordChar    =   "*"
  49.       TabIndex        =   4
  50.       Top             =   1065
  51.       Width           =   2655
  52.    End
  53.    Begin VB.TextBox txtOldPass 
  54.       Height          =   270
  55.       IMEMode         =   3  'DISABLE
  56.       Left            =   1320
  57.       PasswordChar    =   "*"
  58.       TabIndex        =   2
  59.       Top             =   675
  60.       Width           =   2655
  61.    End
  62.    Begin VB.Label Label3 
  63.       Caption         =   "新密码:"
  64.       Height          =   255
  65.       Left            =   600
  66.       TabIndex        =   5
  67.       Top             =   1455
  68.       Width           =   735
  69.    End
  70.    Begin VB.Label Label2 
  71.       Caption         =   "新密码:"
  72.       Height          =   255
  73.       Left            =   600
  74.       TabIndex        =   3
  75.       Top             =   1065
  76.       Width           =   735
  77.    End
  78.    Begin VB.Label Label1 
  79.       Caption         =   "原密码:"
  80.       Height          =   255
  81.       Left            =   600
  82.       TabIndex        =   1
  83.       Top             =   675
  84.       Width           =   735
  85.    End
  86.    Begin VB.Label lbAdmin 
  87.       Caption         =   "用户名:manager"
  88.       Height          =   255
  89.       Left            =   600
  90.       TabIndex        =   0
  91.       Top             =   315
  92.       Width           =   3255
  93.    End
  94. End
  95. Attribute VB_Name = "frmChangPass"
  96. Attribute VB_GlobalNameSpace = False
  97. Attribute VB_Creatable = False
  98. Attribute VB_PredeclaredId = True
  99. Attribute VB_Exposed = False
  100. '****************************************************************************
  101. '人人为我,我为人人
  102. '枕善居收藏整理
  103. '发布日期:2008/01/21
  104. '描    述:汽车维修管理系统SQL2000版
  105. '网    站:http://www.Mndsoft.com/  (VB6源码博客)
  106. '网    站:http://www.VbDnet.com/   (VB.NET源码博客,主要基于.NET2005)
  107. 'e-mail  :Mndsoft@163.com
  108. 'e-mail  :Mndsoft@126.com
  109. 'OICQ    :88382850
  110. '          如果您有新的好的代码别忘记给枕善居哦!
  111. '****************************************************************************
  112. Private Sub CancelButton_Click()
  113. Unload Me
  114. End Sub
  115. Private Sub Form_Load()
  116. lbAdmin.Caption = "用户名:" & g_Admin
  117. End Sub
  118. Private Sub OKButton_Click()
  119. If PassIsTrue(g_Admin, txtOldPass.Text) Then
  120.   If txtNewPass.Text = txtConfirm.Text Then
  121.   g_Conn.Execute ("Update Users set Upass='" & txtNewPass.Text & "' where username='" & g_Admin & "'")
  122.   Unload Me
  123.   Else
  124.   MsgBox "两个新密码不一致,请重新输入"
  125.   End If
  126. Else
  127. MsgBox "原密码错误!"
  128. End If
  129. End Sub