form3.frm

来自「一个学籍管理系统代码」· FRM 代码 · 共 62 行

FRM
62
字号
VERSION 5.00
Begin VB.Form Form3 
   Caption         =   "帮助信息"
   ClientHeight    =   3240
   ClientLeft      =   2895
   ClientTop       =   2985
   ClientWidth     =   7155
   ControlBox      =   0   'False
   LinkTopic       =   "Form3"
   ScaleHeight     =   3240
   ScaleWidth      =   7155
   Begin VB.Frame Frame2 
      Caption         =   "Frame2"
      Height          =   15
      Left            =   4080
      TabIndex        =   2
      Top             =   1560
      Width           =   135
   End
   Begin VB.Frame Frame1 
      Caption         =   "帮助"
      Height          =   2295
      Left            =   240
      TabIndex        =   1
      Top             =   360
      Width           =   3735
      Begin VB.Label Label1 
         Caption         =   $"Form3.frx":0000
         Height          =   975
         Left            =   240
         TabIndex        =   3
         Top             =   720
         Width           =   3255
      End
   End
   Begin VB.CommandButton Command1 
      Caption         =   "结束&Q"
      Height          =   495
      Left            =   5040
      Picture         =   "Form3.frx":00B4
      TabIndex        =   0
      Top             =   1320
      Width           =   1215
   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()
On Error GoTo commanderror
Form2.Enabled = True
Unload Form3
Exit Sub
commanderror:
MsgBox Err.Description
End Sub

⌨️ 快捷键说明

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