📄 about.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "关于金算盘财务及企业管理软件"
ClientHeight = 3630
ClientLeft = 45
ClientTop = 330
ClientWidth = 5895
ClipControls = 0 'False
Icon = "About.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3630
ScaleWidth = 5895
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.PictureBox picIcon
AutoSize = -1 'True
BackColor = &H00C0C0C0&
ClipControls = 0 'False
Height = 300
Left = 240
ScaleHeight = 249.756
ScaleMode = 0 'User
ScaleWidth = 249.756
TabIndex = 1
TabStop = 0 'False
Top = 240
Width = 300
End
Begin VB.CommandButton cmdOK
Cancel = -1 'True
Default = -1 'True
Height = 345
Left = 4290
MaskColor = &H80000003&
Style = 1 'Graphical
TabIndex = 0
Top = 3090
UseMaskColor = -1 'True
Width = 1425
End
Begin VB.Label lblDescription
Caption = "版权所有(C) 1997-1998 重庆金算盘财务软件公司"
ForeColor = &H00000000&
Height = 1170
Left = 1050
TabIndex = 5
Top = 1125
Width = 4575
End
Begin VB.Label lblTitle
Caption = "金算盘商务管理软件(实达专用版)"
ForeColor = &H00000000&
Height = 480
Left = 1050
TabIndex = 4
Top = 240
Width = 4575
End
Begin VB.Line Line1
BorderColor = &H00808080&
BorderStyle = 6 'Inside Solid
Index = 1
X1 = 225
X2 = 5670
Y1 = 2430
Y2 = 2430
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
BorderWidth = 2
Index = 0
X1 = 240
X2 = 5670
Y1 = 2445
Y2 = 2445
End
Begin VB.Label lblVersion
Caption = "标准版 V5.0"
Height = 225
Left = 1050
TabIndex = 3
Top = 780
Width = 4545
End
Begin VB.Label lblDisclaimer
Caption = "警告: 本软件版权已受到保护,任何单位或个人在未经合法授权的情况下,不得擅自复制和使用本软件的全部或部分,违者必究!"
ForeColor = &H00000000&
Height = 825
Left = 255
TabIndex = 2
Top = 2625
Width = 3870
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_Load()
RefreshAbout
Set picIcon.Picture = Utility.GetFormResPicture(109, vbResBitmap)
Set Me.Icon = Utility.GetFormResPicture(139, vbResIcon)
Set cmdOK.Picture = GetFormResPicture(1001, 0)
#If conWan = 1 Then
lblDescription.Caption = "版权所有(C) 1997-1998"
If gExistIndog Then
lblVersion = gclsBase.VersionInfo
Else
Select Case gclsBase.VersionType
Case 0
lblVersion = gclsBase.VersionInfo & "[演示版]"
Case 1
lblVersion = gclsBase.VersionInfo & "[教学版]"
End Select
End If
#Else
lblDescription.Caption = "版权所有(C) 1997-1998 重庆金算盘软件有限公司"
If gExistIndog Then
lblVersion = gclsBase.VersionInfo
Else
Select Case gclsBase.VersionType
Case 0
lblVersion = gclsBase.VersionInfo & "[演示版]"
Case 1
lblVersion = gclsBase.VersionInfo & "[教学版]"
End Select
End If
#End If
End Sub
Private Sub RefreshAbout()
lblTitle = App.title
Me.Caption = lblTitle
End Sub
Private Sub Form_Unload(Cancel As Integer)
Utility.RemoveFormResPicture 109
Utility.RemoveFormResPicture 139
Utility.RemoveFormResPicture 1001
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -