form3.frm

来自「一个VB编写的会议管理系统」· FRM 代码 · 共 60 行

FRM
60
字号
VERSION 5.00
Begin VB.Form 管理界面 
   Caption         =   "管理界面"
   ClientHeight    =   3285
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   6810
   LinkTopic       =   "Form3"
   ScaleHeight     =   3285
   ScaleWidth      =   6810
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton Command2 
      Caption         =   "申请管理"
      Height          =   495
      Left            =   1920
      TabIndex        =   2
      Top             =   1920
      Width           =   2895
   End
   Begin VB.CommandButton Command1 
      Caption         =   "会议室管理"
      Height          =   495
      Left            =   1920
      TabIndex        =   1
      Top             =   1080
      Width           =   2895
   End
   Begin VB.Label Label1 
      Caption         =   "欢迎进入会议管理系统"
      BeginProperty Font 
         Name            =   "仿宋_GB2312"
         Size            =   15.75
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   1680
      TabIndex        =   0
      Top             =   240
      Width           =   3375
   End
End
Attribute VB_Name = "管理界面"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
会议管理.Show
管理界面.Hide
End Sub

Private Sub Command2_Click()
申请管理.Show
Form3.Hide
End Sub

⌨️ 快捷键说明

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