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

百货/超市行业

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmAddAdmin 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "新增用户"
  5.    ClientHeight    =   1440
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   3675
  9.    Icon            =   "frmAddAdmin.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1440
  14.    ScaleWidth      =   3675
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   1  '所有者中心
  17.    Begin VB.CommandButton Command2 
  18.       Caption         =   "取消(&C)"
  19.       Height          =   315
  20.       Left            =   1920
  21.       TabIndex        =   3
  22.       Top             =   900
  23.       Width           =   855
  24.    End
  25.    Begin VB.CommandButton Command1 
  26.       Caption         =   "确定(&O)"
  27.       Height          =   315
  28.       Left            =   960
  29.       TabIndex        =   2
  30.       Top             =   900
  31.       Width           =   855
  32.    End
  33.    Begin VB.TextBox txtAdmin 
  34.       Height          =   285
  35.       Left            =   1560
  36.       TabIndex        =   1
  37.       Top             =   300
  38.       Width           =   1815
  39.    End
  40.    Begin VB.Label Label1 
  41.       Caption         =   "请输入用户名"
  42.       Height          =   195
  43.       Left            =   360
  44.       TabIndex        =   0
  45.       Top             =   360
  46.       Width           =   1095
  47.    End
  48. End
  49. Attribute VB_Name = "frmAddAdmin"
  50. Attribute VB_GlobalNameSpace = False
  51. Attribute VB_Creatable = False
  52. Attribute VB_PredeclaredId = True
  53. Attribute VB_Exposed = False
  54. '****************************************************************************
  55. '人人为我,我为人人
  56. '枕善居收藏整理
  57. '发布日期:2008/01/21
  58. '描    述:汽车维修管理系统SQL2000版
  59. '网    站:http://www.Mndsoft.com/  (VB6源码博客)
  60. '网    站:http://www.VbDnet.com/   (VB.NET源码博客,主要基于.NET2005)
  61. 'e-mail  :Mndsoft@163.com
  62. 'e-mail  :Mndsoft@126.com
  63. 'OICQ    :88382850
  64. '          如果您有新的好的代码别忘记给枕善居哦!
  65. '****************************************************************************
  66. Public Dmodify As Boolean
  67. Public Dadmin As String
  68. Private Sub Command1_Click()
  69. Dim unm As String
  70. Dim Rs As New ADODB.Recordset
  71. unm = Trim(txtAdmin)
  72. If unm <> "" Then
  73.     Set Rs = g_Conn.Execute("select count(*) from Users where UserName = '" & unm & "'")
  74.     If Rs(0).Value >= 1 Then
  75.         MsgBox "用户名已存在,请重试!", , "提示:"
  76.         Exit Sub
  77.     Else
  78.         If Dmodify Then
  79.             g_Conn.Execute ("Update Users set UserName='" & unm & "' where UserName='" & Dadmin & "'")
  80.             MsgBox "用户“" & unm & "”修改成功!"
  81.         Else
  82.             g_Conn.Execute ("insert into users(UserName) values('" & unm & "')")
  83.             MsgBox "用户“" & unm & "”添加成功!"
  84.         End If
  85.         Call frmSq.LoadUsers
  86.     End If
  87. End If
  88. Unload Me
  89. End Sub
  90. Private Sub Command2_Click()
  91.     Unload Me
  92. End Sub
  93. Private Sub Form_Load()
  94.  If Dmodify Then Me.Caption = "修改管理员": txtAdmin = Dadmin: txtAdmin.SelStart = 0: txtAdmin.SelLength = Len(Dadmin) Else Me.Caption = "新增管理员"
  95. End Sub