📄 about.frm
字号:
VERSION 5.00
Begin VB.Form Form3
BorderStyle = 4 'Fixed ToolWindow
Caption = "About"
ClientHeight = 1425
ClientLeft = 45
ClientTop = 315
ClientWidth = 4095
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1425
ScaleWidth = 4095
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "e-mail: zorannakov@hotmail.com"
Height = 195
Index = 1
Left = 877
TabIndex = 1
Top = 1095
Width = 2340
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Created by Nakov Zoran"
Height = 195
Index = 0
Left = 1170
TabIndex = 0
Top = 855
Width = 1755
End
Begin VB.Image Image1
Height = 570
Left = 150
Picture = "About.frx":0000
Top = 90
Width = 3750
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
'Escape
If KeyCode = 27 Then Unload Me
End Sub
Private Sub Form_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
Unload Me
End Sub
Private Sub Image1_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
Unload Me
End Sub
Private Sub Label1_MouseUp(Index As Integer, Button As Integer, Shift As Integer, x As Single, y As Single)
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -