⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmuseredit.frm

📁 大连市旅游资源管理系统是面向现实需求的一个实用系统。其设计的目的是为旅行社提供一个友好的、直接的交流平台。本系统主要分为九大模块:地域信息管理、景点资源管理、宾馆资源管理、餐厅资源管理、娱乐资源管理、
💻 FRM
字号:
VERSION 5.00
Begin VB.Form FrmUserEdit 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "编辑用户信息"
   ClientHeight    =   2685
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4470
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2685
   ScaleWidth      =   4470
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton Cmd_Ok 
      Caption         =   "确 定"
      Height          =   400
      Left            =   783
      MouseIcon       =   "FrmUserEdit.frx":0000
      MousePointer    =   99  'Custom
      Style           =   1  'Graphical
      TabIndex        =   4
      Top             =   2160
      Width           =   1300
   End
   Begin VB.CommandButton Cmd_Cancel 
      Cancel          =   -1  'True
      Caption         =   "取 消"
      Height          =   400
      Left            =   2388
      MouseIcon       =   "FrmUserEdit.frx":030A
      MousePointer    =   99  'Custom
      Style           =   1  'Graphical
      TabIndex        =   5
      Top             =   2160
      Width           =   1300
   End
   Begin VB.Frame Frame1 
      Height          =   1815
      Left            =   240
      TabIndex        =   6
      Top             =   120
      Width           =   3975
      Begin VB.TextBox txtEname 
         Height          =   270
         Left            =   1560
         MaxLength       =   20
         TabIndex        =   1
         Top             =   579
         Width           =   2175
      End
      Begin VB.TextBox txtPass2 
         Height          =   270
         IMEMode         =   3  'DISABLE
         Left            =   1560
         MaxLength       =   20
         PasswordChar    =   "*"
         TabIndex        =   3
         Top             =   1347
         Width           =   2175
      End
      Begin VB.TextBox txtPass 
         Height          =   270
         IMEMode         =   3  'DISABLE
         Left            =   1560
         MaxLength       =   20
         PasswordChar    =   "*"
         TabIndex        =   2
         Top             =   963
         Width           =   2175
      End
      Begin VB.TextBox txtUserName 
         Height          =   270
         Left            =   1560
         MaxLength       =   20
         TabIndex        =   0
         Top             =   240
         Width           =   2175
      End
      Begin VB.Label Label8 
         AutoSize        =   -1  'True
         BackColor       =   &H00FFC0C0&
         BackStyle       =   0  'Transparent
         Caption         =   "员工姓名"
         Height          =   180
         Left            =   240
         TabIndex        =   10
         Top             =   624
         Width           =   720
      End
      Begin VB.Label Label4 
         AutoSize        =   -1  'True
         BackStyle       =   0  'Transparent
         Caption         =   "用户名"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   9
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00000000&
         Height          =   180
         Left            =   240
         TabIndex        =   9
         Top             =   240
         Width           =   540
      End
      Begin VB.Label Label6 
         AutoSize        =   -1  'True
         BackStyle       =   0  'Transparent
         Caption         =   "确认密码"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   9
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00000000&
         Height          =   180
         Left            =   240
         TabIndex        =   8
         Top             =   1392
         Width           =   720
      End
      Begin VB.Label Label1 
         AutoSize        =   -1  'True
         BackStyle       =   0  'Transparent
         Caption         =   "密码"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   9
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00000000&
         Height          =   180
         Left            =   240
         TabIndex        =   7
         Top             =   1008
         Width           =   360
      End
   End
End
Attribute VB_Name = "FrmUserEdit"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public Modify As Boolean
Public OriUser As String

Private Sub Cmd_Cancel_Click()
  Unload Me
End Sub

Private Sub Cmd_OK_Click()
  '判断用户输入数据的有效性
  If Trim(txtUserName) = "" Then
    MsgBox "请输入用户名"
    txtUserName.SetFocus
    Exit Sub
  End If
  If Len(txtPass) < 6 Then
    MsgBox "密码长度不能小于6"
    txtPass.SetFocus
    txtPass.SelStart = 0
    txtPass.SelLength = Len(txtPass2)
    Exit Sub
  End If
  If txtPass <> txtPass2 Then
    MsgBox "密码和确认密码不相同,请重新确认"
    txtPass2.SetFocus
    txtPass2.SelStart = 0
    txtPass2.SelLength = Len(txtPass2)
    Exit Sub
  End If
  If txtEname = "" Then
    MsgBox "请输入员工姓名"
    txtEname.SetFocus
    Exit Sub
  End If
  
  With MyUser
  '判断用户数据是否存在
  If Modify = False Or OriUser <> Trim(txtUserName) Then
    If .In_DB(MakeStr(txtUserName)) = True Then
      MsgBox "用户名已经存在,请重新输入"
      txtUserName.SetFocus
      txtUserName.SelStart = 0
      txtUserName.SelLength = Len(txtUserName)
      Exit Sub
    End If
  End If
  '把用户数据赋值到MyUser对象的各个成员变量中
  .EmpName = MakeStr(txtEname)
  .UserName = MakeStr(txtUserName)
  .Pwd = MakeStr(txtPass)
  '根据变量Modify的值,决定是插入新数据,还是修改已有的数据
  If Modify = False Then
    .Insert
  Else
    .Update (OriUser)
    '如果修改自身用户名,则更新CurUser对象
    If OriUser = CurUser.UserName And Trim(txtUserName) <> OriUser Then
      CurUser.UserName = Trim(txtUserName)
      CurUser.GetInfo (CurUser.UserName)
    End If
  End If
  End With
  '关闭窗体
  Unload Me
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -