📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "关于"
ClientHeight = 4770
ClientLeft = 2340
ClientTop = 1935
ClientWidth = 7305
ClipControls = 0 'False
Icon = "frmAbout.frx":0000
LinkTopic = "Form2"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3292.339
ScaleMode = 0 'User
ScaleWidth = 6859.771
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 30
Left = 5700
Top = 1635
End
Begin VB.PictureBox picIcon
ClipControls = 0 'False
Height = 3315
Left = 180
Picture = "frmAbout.frx":0442
ScaleHeight = 217
ScaleMode = 3 'Pixel
ScaleWidth = 109
TabIndex = 6
ToolTipText = "双击此处,看看有什么收获??"
Top = 150
Width = 1695
Begin VB.Label Label4
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "BP:95900-7123683"
ForeColor = &H00FF0000&
Height = 180
Left = 30
TabIndex = 11
Top = 2940
Width = 1530
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "TEL:0571-7931745"
ForeColor = &H00FF0000&
Height = 180
Left = 30
TabIndex = 10
Top = 2760
Width = 1530
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "作者:高飞"
ForeColor = &H00FF0000&
Height = 180
Left = 30
TabIndex = 9
Top = 2550
Width = 900
End
End
Begin VB.CommandButton cmdOK
Cancel = -1 'True
Caption = "确定"
Default = -1 'True
Height = 345
Left = 5535
TabIndex = 0
Top = 3780
Width = 1500
End
Begin VB.CommandButton cmdSysInfo
Caption = "系统信息(&S)..."
Height = 345
Left = 5550
TabIndex = 1
Top = 4230
Width = 1485
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "有限公司"
Height = 180
Left = 2070
TabIndex = 12
Top = 1500
Width = 720
End
Begin VB.Label Label1
Caption = "版权所有(C) "
Height = 195
Left = 2070
TabIndex = 8
Top = 1245
Width = 5040
End
Begin VB.Label lblUserInfo
BorderStyle = 1 'Fixed Single
Caption = "User information"
ForeColor = &H00000000&
Height = 1185
Left = 2070
TabIndex = 7
Top = 2280
Width = 5040
End
Begin VB.Line Line1
BorderColor = &H00808080&
BorderStyle = 6 'Inside Solid
Index = 1
X1 = 140.858
X2 = 6655.997
Y1 = 2484.784
Y2 = 2484.784
End
Begin VB.Label lblDescription
AutoSize = -1 'True
Caption = "该软件授权:"
ForeColor = &H00000000&
Height = 180
Left = 2070
TabIndex = 2
Top = 1995
Width = 5040
End
Begin VB.Label lblTitle
Caption = "应用程序标题"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 645
Left = 2070
TabIndex = 4
Top = 180
Width = 5040
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
BorderWidth = 2
Index = 0
X1 = 154.943
X2 = 6655.997
Y1 = 2495.137
Y2 = 2495.137
End
Begin VB.Label lblVersion
Caption = "版本 V1.0.1"
Height = 225
Left = 2070
TabIndex = 5
Top = 915
Width = 5040
End
Begin VB.Label lblDisclaimer
Caption = $"frmAbout.frx":7962
ForeColor = &H00000000&
Height = 825
Left = 180
TabIndex = 3
Top = 3780
Width = 4770
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
' 注册表关键字安全选项...
Const READ_CONTROL = &H20000
Const KEY_QUERY_VALUE = &H1
Const KEY_SET_VALUE = &H2
Const KEY_CREATE_SUB_KEY = &H4
Const KEY_ENUMERATE_SUB_KEYS = &H8
Const KEY_NOTIFY = &H10
Const KEY_CREATE_LINK = &H20
Const KEY_ALL_ACCESS = KEY_QUERY_VALUE + KEY_SET_VALUE + _
KEY_CREATE_SUB_KEY + KEY_ENUMERATE_SUB_KEYS + _
KEY_NOTIFY + KEY_CREATE_LINK + READ_CONTROL
' 注册表关键字 ROOT 类型...
Const HKEY_LOCAL_MACHINE = &H80000002
Const ERROR_SUCCESS = 0
Const REG_SZ = 1 ' 独立的空的终结字符串
Const REG_DWORD = 4 ' 32位数字
' Reg Key ROOT Types...
Const API_SUCCESS = 0
Const gREGKEYSYSINFOLOC = "SOFTWARE\Microsoft\Shared Tools Location"
Const gREGVALSYSINFOLOC = "MSINFO"
Const gREGKEYSYSINFO = "SOFTWARE\Microsoft\Shared Tools\MSINFO"
Const gREGVALSYSINFO = "PATH"
Private Declare Function RegOpenKeyEx Lib "advapi32" Alias "RegOpenKeyExA" (ByVal hKey As Long, ByVal lpSubKey As String, ByVal ulOptions As Long, ByVal samDesired As Long, ByRef phkResult As Long) As Long
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -