📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Dialog
Caption = "关于我的应用程序"
ClientHeight = 3045
ClientLeft = 2340
ClientTop = 1935
ClientWidth = 5730
ClipControls = 0 'False
Icon = "frmAbout.frx":0000
LinkTopic = "Form2"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2101.713
ScaleMode = 0 'User
ScaleWidth = 5380.766
ShowInTaskbar = 0 'False
Begin VB.PictureBox picIcon
AutoSize = -1 'True
BorderStyle = 0 'None
ClipControls = 0 'False
Height = 1800
Left = 285
Picture = "frmAbout.frx":030A
ScaleHeight = 1264.2
ScaleMode = 0 'User
ScaleWidth = 1264.2
TabIndex = 1
Top = 255
Width = 1800
End
Begin VB.CommandButton cmdOK
Cancel = -1 'True
Default = -1 'True
Height = 405
Left = 4335
Picture = "frmAbout.frx":AC0C
Style = 1 'Graphical
TabIndex = 0
Top = 2505
Width = 1230
End
Begin VB.Line Line1
BorderColor = &H00808080&
BorderStyle = 6 'Inside Solid
Index = 1
X1 = 84.515
X2 = 5309.398
Y1 = 1635.816
Y2 = 1635.816
End
Begin VB.Label lblDescription
BackStyle = 0 'Transparent
Caption = "描述:NetBar服务器主要控制网吧中的所有计算机启动、关闭、发送消息等。实时对每台计算机进行计费。"
ForeColor = &H00000000&
Height = 810
Left = 2325
TabIndex = 2
Top = 1485
Width = 3135
End
Begin VB.Label lblTitle
BackStyle = 0 'Transparent
Caption = "NetBar 服务器"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 480
Left = 2355
TabIndex = 4
Top = 495
Width = 2955
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
BorderWidth = 2
Index = 0
X1 = 98.6
X2 = 5309.398
Y1 = 1646.169
Y2 = 1646.169
End
Begin VB.Label lblVersion
BackStyle = 0 'Transparent
Caption = "版本"
ForeColor = &H00000000&
Height = 225
Left = 2370
TabIndex = 5
Top = 1140
Width = 2625
End
Begin VB.Label lblDisclaimer
BackStyle = 0 'Transparent
Caption = "研制:温州东化计算机科技有限公司"
ForeColor = &H00000000&
Height = 345
Left = 150
TabIndex = 3
Top = 2595
Width = 3630
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdOK_Click()
Unload Me
End Sub
Private Sub Form_Deactivate()
'Unload Me
End Sub
Private Sub Form_Load()
FA = True '显示
Dim L As Long, T As Long
L = Val(GetSetting(App.EXEName, "Option", "About_L", 2000))
T = Val(GetSetting(App.EXEName, "Option", "About_T", 2000))
Me.left = L
Me.tOp = T
Me.Caption = "关于 " & App.Title
lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
End Sub
Private Sub Form_Unload(Cancel As Integer)
FA = False '关闭
SaveSetting App.EXEName, "Option", "About_L", Me.left
SaveSetting App.EXEName, "Option", "About_T", Me.tOp
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -