aboutbox.frm

来自「SQL数据库工具就是一种即可以进行数据浏览、添加、删除和修改等数据库管理操作」· FRM 代码 · 共 94 行

FRM
94
字号
VERSION 5.00
Begin VB.Form frmAboutBox 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "关于"
   ClientHeight    =   2280
   ClientLeft      =   4395
   ClientTop       =   2925
   ClientWidth     =   5055
   Icon            =   "ABOUTBOX.frx":0000
   LinkMode        =   1  'Source
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2280
   ScaleWidth      =   5055
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton cmdOK 
      Cancel          =   -1  'True
      Caption         =   "确定(&O)"
      Default         =   -1  'True
      Height          =   375
      Left            =   2040
      MaskColor       =   &H00000000&
      TabIndex        =   0
      Top             =   1800
      Width           =   975
   End
   Begin VB.Label lblLabels 
      Alignment       =   2  'Center
      Caption         =   "作者:陈琳"
      Height          =   375
      Index           =   3
      Left            =   1320
      TabIndex        =   4
      Top             =   1320
      Width           =   2535
   End
   Begin VB.Label lblLabels 
      Alignment       =   2  'Center
      Caption         =   "版本 1.0"
      Height          =   210
      Index           =   2
      Left            =   1320
      TabIndex        =   3
      Top             =   840
      Width           =   2535
   End
   Begin VB.Label lblLabels 
      Alignment       =   2  'Center
      Caption         =   "SQL 数据库工具"
      Height          =   210
      Index           =   1
      Left            =   1200
      TabIndex        =   2
      Top             =   600
      Width           =   2895
   End
   Begin VB.Label lblLabels 
      Alignment       =   2  'Center
      Caption         =   "东北师范大学毕业设计"
      Height          =   270
      Index           =   0
      Left            =   1320
      TabIndex        =   1
      Top             =   120
      Width           =   2535
   End
End
Attribute VB_Name = "frmAboutBox"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit




Private Sub Form_KeyPress(KeyAscii As Integer)
  Unload Me
End Sub



Private Sub cmdOK_Click()
  Unload Me
End Sub

Private Sub cmdOK_KeyPress(KeyAscii As Integer)
  Unload Me
End Sub

⌨️ 快捷键说明

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