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

📄 formuser.frm

📁 企业员工信息管理系统.可以对企业的员工的各种信息进行管理
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form用户类型选择 
   BackColor       =   &H00FF8080&
   Caption         =   "用户类型选择"
   ClientHeight    =   5580
   ClientLeft      =   3630
   ClientTop       =   2730
   ClientWidth     =   7740
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   Picture         =   "Formuser.frx":0000
   ScaleHeight     =   5580
   ScaleWidth      =   7740
   StartUpPosition =   2  '屏幕中心
   Begin VB.ComboBox Combo1 
      Height          =   300
      ItemData        =   "Formuser.frx":109A5
      Left            =   1680
      List            =   "Formuser.frx":109AF
      TabIndex        =   4
      Text            =   "                                                                                                                    "
      Top             =   2760
      Width           =   3255
   End
   Begin VB.CommandButton Command2 
      BackColor       =   &H00C0FFC0&
      Caption         =   "退  出"
      BeginProperty Font 
         Name            =   "华文行楷"
         Size            =   15
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Left            =   4440
      Style           =   1  'Graphical
      TabIndex        =   1
      Top             =   3840
      Width           =   2175
   End
   Begin VB.CommandButton Command1 
      BackColor       =   &H00C0FFC0&
      Caption         =   "进  入"
      BeginProperty Font 
         Name            =   "华文行楷"
         Size            =   15
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Left            =   1440
      Style           =   1  'Graphical
      TabIndex        =   0
      Top             =   3840
      Width           =   2175
   End
   Begin VB.Label Label2 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "欢 迎 光 临"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   48
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   960
      Left            =   1440
      TabIndex        =   3
      Top             =   480
      Width           =   5280
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "请选择登录类型:"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   15.75
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   375
      Left            =   1680
      TabIndex        =   2
      Top             =   2160
      Width           =   2535
   End
End
Attribute VB_Name = "Form用户类型选择"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Len(Trim(Combo1.Text)) = 0 Then
  MsgBox "请先选择类型!", vbOKOnly + vbExclamation, "警告"
  Exit Sub
End If

If Combo1.Text = "用户登录" Then
    Form用户登录.Show
    Form用户类型选择.Hide
Else
  If Combo1.Text = "管理员登录" Then
     Form管理员登录.Show
     Form用户类型选择.Hide
  End If
End If
  
End Sub

Private Sub Command2_Click()
End
End Sub

⌨️ 快捷键说明

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