📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 3915
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7320
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3915
ScaleWidth = 7320
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
BackColor = &H8000000A&
BorderStyle = 0 'None
Height = 4035
Left = 0
TabIndex = 0
Top = -120
Width = 7305
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
Caption = "学记工作室"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 300
Left = 2355
TabIndex = 7
Top = 705
Width = 1575
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
Caption = "授权"
Height = 255
Left = 120
TabIndex = 6
Top = 240
Width = 6855
End
Begin VB.Label lblProductName
AutoSize = -1 'True
Caption = "信息管理系统"
BeginProperty Font
Name = "宋体"
Size = 27.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 555
Left = 2400
TabIndex = 5
Top = 1200
Width = 3420
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "win2000/xp/2003"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 4725
TabIndex = 4
Top = 2040
Width = 2025
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "1.0"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 6345
TabIndex = 3
Top = 2400
Width = 405
End
Begin VB.Label lblWarning
Caption = "警告"
Height = 195
Left = 150
TabIndex = 2
Top = 3660
Width = 6765
End
Begin VB.Label lblCopyright
Caption = "ken.com(学记) 版权所有"
Height = 255
Left = 4440
TabIndex = 1
Top = 2880
Width = 2415
End
Begin VB.Image imgLogo
Height = 2385
Left = 360
Picture = "frmSplash.frx":000C
Stretch = -1 'True
Top = 795
Width = 1815
End
End
Begin VB.Timer Timer1
Interval = 2000
Left = 3120
Top = 3120
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_KeyPress(KeyAscii As Integer)
Unload Me
End Sub
Private Sub Form_Load()
lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
lblProductName.Caption = App.Title
'----------
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -