操作员选择.frm

来自「利用VB对公司人事管理系统的部分功能的描述」· FRM 代码 · 共 73 行

FRM
73
字号
VERSION 5.00
Begin VB.Form Form3 
   Caption         =   "操作员操作"
   ClientHeight    =   4650
   ClientLeft      =   60
   ClientTop       =   420
   ClientWidth     =   5520
   LinkTopic       =   "Form3"
   ScaleHeight     =   4650
   ScaleWidth      =   5520
   StartUpPosition =   3  '窗口缺省
   Begin VB.Frame Frame1 
      Caption         =   "选 择"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   9
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   3495
      Left            =   1080
      TabIndex        =   0
      Top             =   600
      Width           =   3255
      Begin VB.CommandButton Command3 
         Caption         =   "工资信息管理"
         Height          =   375
         Left            =   600
         TabIndex        =   3
         Top             =   2400
         Width           =   2055
      End
      Begin VB.CommandButton Command2 
         Caption         =   "部门信息管理"
         Height          =   375
         Left            =   600
         TabIndex        =   2
         Top             =   1560
         Width           =   2055
      End
      Begin VB.CommandButton Command1 
         Caption         =   "员工信息管理"
         Height          =   375
         Left            =   600
         TabIndex        =   1
         Top             =   720
         Width           =   2055
      End
   End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
  Unload Me
  Form5.Show
End Sub

Private Sub Command2_Click()
  Unload Me
  Form6.Show
End Sub

Private Sub Command3_Click()
  Unload Me
  Form7.Show
End Sub

⌨️ 快捷键说明

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