📄 about.frm
字号:
VERSION 4.00
Begin VB.Form frmAbout
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "About"
ClientHeight = 855
ClientLeft = 2505
ClientTop = 2565
ClientWidth = 5790
ClipControls = 0 'False
ControlBox = 0 'False
BeginProperty Font
name = "MS Sans Serif"
charset = 0
weight = 700
size = 8.25
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
Height = 1260
Left = 2445
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 855
ScaleMode = 0 'User
ScaleWidth = 5784
Top = 2220
Width = 5910
Begin VB.PictureBox picAbout
Height = 615
Left = 3840
Picture = "ABOUT.frx":0000
ScaleHeight = 555
ScaleWidth = 555
TabIndex = 2
Top = 120
Width = 615
End
Begin VB.CommandButton cmdAbout
Cancel = -1 'True
Caption = "OK"
Default = -1 'True
Height = 615
Left = 4560
TabIndex = 0
Top = 120
Width = 1095
End
Begin VB.Label lblAbout
Alignment = 2 'Center
BorderStyle = 1 'Fixed Single
Caption = "This is the About Box for the Toolbar Sample Code."
BeginProperty Font
name = "MS Sans Serif"
charset = 0
weight = 700
size = 9.75
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
Height = 615
Left = 120
TabIndex = 1
Top = 120
Width = 3615
WordWrap = -1 'True
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Private Sub cmdAbout_Click()
' This form is loaded as a modal dialog. The Unload statement
' releases the form from memory when the user clicks the OK command button.
Unload frmAbout
End Sub
Private Sub Form_Load()
' The form is horizontally and vertically centered when loaded.
TOP = Screen.Height / 2 - Height / 2
Left = Screen.Width / 2 - Width / 2
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
' The general procedure DoUnLoadPreCheck handles the possible unload options
' for all three forms in this sample application.
DoUnLoadPreCheck UnloadMode
End Sub
Private Sub fraAbout_DragDrop(Source As Control, X As Single, Y As Single)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -