frmUser.frm
Upload User: czxfzx
Upload Date: 2015-02-25
Package Size: 749k
Code Size: 6k
Development Platform:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmUser 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "管理员信息"
  5.    ClientHeight    =   2775
  6.    ClientLeft      =   2760
  7.    ClientTop       =   3750
  8.    ClientWidth     =   5235
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   2775
  13.    ScaleWidth      =   5235
  14.    ShowInTaskbar   =   0   'False
  15.    Begin VB.CommandButton OKButton 
  16.       Caption         =   "确定"
  17.       Height          =   330
  18.       Left            =   2280
  19.       TabIndex        =   4
  20.       Top             =   2280
  21.       Width           =   1215
  22.    End
  23.    Begin VB.CommandButton CancelButton 
  24.       Caption         =   "取消"
  25.       Height          =   330
  26.       Left            =   3720
  27.       TabIndex        =   5
  28.       Top             =   2280
  29.       Width           =   1215
  30.    End
  31.    Begin VB.Frame fraMerchType 
  32.       Caption         =   "管理员信息"
  33.       Height          =   1815
  34.       Left            =   240
  35.       TabIndex        =   0
  36.       Top             =   240
  37.       Width           =   4455
  38.       Begin VB.TextBox txtConfirmPwd 
  39.          Height          =   375
  40.          IMEMode         =   3  'DISABLE
  41.          Left            =   1320
  42.          MaxLength       =   20
  43.          PasswordChar    =   "*"
  44.          TabIndex        =   3
  45.          Text            =   "txtRemark"
  46.          Top             =   1200
  47.          Width           =   2535
  48.       End
  49.       Begin VB.TextBox txtPwd 
  50.          Height          =   375
  51.          IMEMode         =   3  'DISABLE
  52.          Left            =   1320
  53.          MaxLength       =   20
  54.          PasswordChar    =   "*"
  55.          TabIndex        =   2
  56.          Text            =   "txtRemark"
  57.          Top             =   731
  58.          Width           =   2535
  59.       End
  60.       Begin VB.TextBox txtName 
  61.          Height          =   375
  62.          Left            =   1320
  63.          MaxLength       =   18
  64.          TabIndex        =   1
  65.          Text            =   "txtName"
  66.          Top             =   263
  67.          Width           =   2535
  68.       End
  69.       Begin VB.Label Label3 
  70.          AutoSize        =   -1  'True
  71.          Caption         =   "确认密码"
  72.          Height          =   180
  73.          Left            =   360
  74.          TabIndex        =   8
  75.          Top             =   1320
  76.          Width           =   720
  77.       End
  78.       Begin VB.Label Label1 
  79.          AutoSize        =   -1  'True
  80.          Caption         =   "用户名"
  81.          Height          =   180
  82.          Left            =   360
  83.          TabIndex        =   7
  84.          Top             =   360
  85.          Width           =   540
  86.       End
  87.       Begin VB.Label Label2 
  88.          AutoSize        =   -1  'True
  89.          Caption         =   "密码"
  90.          Height          =   180
  91.          Left            =   360
  92.          TabIndex        =   6
  93.          Top             =   840
  94.          Width           =   360
  95.       End
  96.    End
  97. End
  98. Attribute VB_Name = "frmUser"
  99. Attribute VB_GlobalNameSpace = False
  100. Attribute VB_Creatable = False
  101. Attribute VB_PredeclaredId = True
  102. Attribute VB_Exposed = False
  103. Option Explicit
  104. Private OK As Boolean             '确定用户按了OK还是CANCEL按钮
  105. Private m_obj As clsAdmin         '数据对象,用来存储用户输入数据
  106. Public m_ViewType As gxcViewType  '显示状态,指添加还是修改
  107. '根据是“新增”还是修改,确定显示内容
  108. Private Sub SetStatus()
  109.   
  110.   '设置控件默认值
  111.   Call SetDefaultValue
  112.   
  113.   txtName.Locked = True
  114.   
  115.   '设置状态
  116.   Select Case m_ViewType
  117.   Case vtadd    '添加
  118.     txtName.Locked = False
  119.     CancelButton.Visible = True
  120.     OKButton.Caption = "确定"
  121.   Case vtModify '修改
  122.     CancelButton.Visible = True
  123.     OKButton.Caption = "保存"
  124.   Case vtInfo   '查看
  125.     CancelButton.Visible = False
  126.     OKButton.Caption = "关闭"
  127.   End Select
  128. End Sub
  129. '打开对话框,并传出用户输入数据
  130. Public Function ShowDlg(ByRef obj As Object, _
  131.                         ByVal eViewType As gxcViewType) As Boolean
  132.   '保存数据
  133.   Set m_obj = obj         '用户输入数据存放于此对象中
  134.   m_ViewType = eViewType  '对话框状态
  135.   
  136.   '根据新增、编辑或查看设置显示内容
  137.   SetStatus
  138.   
  139.   '显示对话框
  140.   OK = False
  141.   Me.Show vbModal
  142.   If OK = False Then
  143.     ShowDlg = False
  144.     Exit Function
  145.   End If
  146.   
  147.   '保存数据
  148.   Set obj = m_obj
  149.   
  150.   '返回并释放对话框
  151.   ShowDlg = True
  152.   Unload Me
  153.   
  154. End Function
  155. '设置控件默认值
  156. Private Sub SetDefaultValue()
  157.   Dim ctl As Control
  158.   Dim i As Integer
  159.   
  160.  
  161.  '如果是新增,则清空所有文本框
  162.  '此处判断 m_obj为空与判断m_ViewType = vtAdd等效,但更安全
  163.   If m_obj Is Nothing Then
  164.     For Each ctl In Controls
  165.       If TypeOf ctl Is TextBox Then
  166.         ctl.Text = ""
  167.       End If
  168.     Next
  169.   Else  '用传入对象的值更新数据
  170.     With m_obj
  171.       txtName.Text = .Account
  172.       txtPwd.Text = .Pwd
  173.       txtConfirmPwd.Text = .Pwd
  174.     End With
  175.   End If
  176.   
  177. End Sub
  178. '检查输入有效性
  179. Private Function CheckValid() As Boolean
  180.   If txtName.Text = "" _
  181.     Or txtPwd.Text = "" _
  182.     Or txtConfirmPwd.Text = "" Then
  183.     MsgBox "请填写完毕以上各项内容"
  184.     CheckValid = False
  185.     Exit Function
  186.   End If
  187.   If txtConfirmPwd.Text <> txtPwd Then
  188.     MsgBox "两次密码输入不一致"
  189.     CheckValid = False
  190.     Exit Function
  191.   End If
  192.   CheckValid = True
  193.   
  194. End Function
  195. '保存数据
  196. Private Sub SaveValue()
  197.   '给“成员变量”对象赋值
  198.   With m_obj
  199.     '注意以下利用RealString函数替换去除输入中的单引号
  200.     .Account = RealString(txtName.Text)
  201.     .Pwd = RealString(txtPwd.Text)
  202.   End With
  203. End Sub
  204. '取消按钮
  205. Private Sub CancelButton_Click()
  206.   Me.Hide
  207. End Sub
  208. '确定按钮
  209. Private Sub OKButton_Click()
  210.   OK = True
  211.   
  212.   '检测输入有效性
  213.   If Not CheckValid Then Exit Sub
  214.   
  215.   '如果是新增状态,则初始化一个数据对象
  216.   If m_ViewType = vtadd Then Set m_obj = New clsAdmin
  217.   
  218.   '保存用户输入
  219.   SaveValue
  220.   Me.Hide
  221.   
  222. End Sub