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

📄 superenter.frm

📁 库存管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form superenter 
   BackColor       =   &H000000C0&
   BorderStyle     =   1  'Fixed Single
   Caption         =   "超级管理员登陆"
   ClientHeight    =   1440
   ClientLeft      =   4455
   ClientTop       =   5190
   ClientWidth     =   3480
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1440
   ScaleWidth      =   3480
   Begin VB.CommandButton superdisplay 
      Caption         =   "显   示"
      Height          =   375
      Left            =   1253
      TabIndex        =   6
      Top             =   960
      Width           =   975
   End
   Begin VB.TextBox supername 
      BackColor       =   &H00008000&
      ForeColor       =   &H00008000&
      Height          =   285
      Left            =   1680
      TabIndex        =   3
      Top             =   120
      Width           =   1695
   End
   Begin VB.TextBox superpassword 
      BackColor       =   &H00008000&
      ForeColor       =   &H00008000&
      Height          =   285
      Left            =   1680
      TabIndex        =   2
      Top             =   600
      Width           =   1695
   End
   Begin VB.CommandButton superyes 
      Caption         =   "确   认"
      Height          =   375
      Left            =   120
      TabIndex        =   1
      Top             =   960
      Width           =   975
   End
   Begin VB.CommandButton superno 
      Caption         =   "取   消"
      Height          =   375
      Left            =   2400
      TabIndex        =   0
      Top             =   960
      Width           =   975
   End
   Begin VB.Label Label1 
      BackColor       =   &H000000C0&
      Caption         =   "授权名称:"
      BeginProperty Font 
         Name            =   "仿宋_GB2312"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   255
      Left            =   120
      TabIndex        =   5
      Top             =   120
      Width           =   1455
   End
   Begin VB.Label Label2 
      BackColor       =   &H000000C0&
      Caption         =   "授权密码:"
      BeginProperty Font 
         Name            =   "楷体_GB2312"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   255
      Left            =   120
      TabIndex        =   4
      Top             =   600
      Width           =   1335
   End
End
Attribute VB_Name = "superenter"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub superdisplay_Click()
supername.ForeColor = &HFFFF&
superpassword.ForeColor = &HFFFF&
End Sub

Private Sub superno_Click()
Unload Me

End Sub

Private Sub superyes_Click()
Dim b As Boolean
If (supername.Text = "zhangliuquan" And superpassword.Text = "5818749") Or (supername.Text = "dongfangfang" And superpassword.Text = "010608") Then
    FrmSet.Show
Else
    b = MsgBox("你没有权限更改这里的设置信息!", vbCritical, "东方库管")
End If
supername.Text = ""
superpassword.Text = ""
Unload Me
End Sub

⌨️ 快捷键说明

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