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

📄 login1.frm

📁 用与大型超市的管理与运行;具有提高效率节省费用的优点
💻 FRM
字号:
VERSION 5.00
Begin VB.Form login 
   BackColor       =   &H00FFC0C0&
   Caption         =   "身份验证"
   ClientHeight    =   1995
   ClientLeft      =   5055
   ClientTop       =   3450
   ClientWidth     =   4230
   Icon            =   "login1.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   1995
   ScaleWidth      =   4230
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton cmdCancel 
      Height          =   375
      Left            =   2520
      Picture         =   "login1.frx":08CA
      Style           =   1  'Graphical
      TabIndex        =   4
      Top             =   1080
      Width           =   855
   End
   Begin VB.CommandButton cmdOK 
      Height          =   375
      Left            =   600
      Picture         =   "login1.frx":1456
      Style           =   1  'Graphical
      TabIndex        =   3
      Top             =   1080
      Width           =   855
   End
   Begin VB.OptionButton OptUsertype 
      BackColor       =   &H00FFC0C0&
      Caption         =   "查询人员"
      Height          =   255
      Index           =   1
      Left            =   2520
      TabIndex        =   2
      Top             =   360
      Width           =   1095
   End
   Begin VB.OptionButton OptUsertype 
      BackColor       =   &H00FFC0C0&
      Caption         =   "管理人员"
      Height          =   255
      Index           =   0
      Left            =   720
      TabIndex        =   1
      Top             =   360
      Width           =   1215
   End
   Begin VB.Frame frmUsertupe 
      BackColor       =   &H00FFC0C0&
      Caption         =   "用户身份"
      Height          =   735
      Left            =   240
      TabIndex        =   0
      Top             =   120
      Width           =   3735
   End
End
Attribute VB_Name = "login"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub OptUsertype_Click(index As Integer)
usertype = index
End Sub
Private Sub cmdOK_Click()
Select Case usertype
    Case 0:
    Unload Me
    frmlogin.Show
    Case 1:
    Unload Me
    frmFind.Show
   End Select
End Sub
Private Sub cmdcancel_Click()
Unload Me
End Sub

⌨️ 快捷键说明

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