📄 aboutbox.frm
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -