📄 frmsplash1.frm
字号:
VERSION 5.00
Object = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0"; "MSWINSCK.OCX"
Object = "{6FBA474E-43AC-11CE-9A0E-00AA0062BB4C}#1.0#0"; "SYSINFO.OCX"
Begin VB.Form frmSplash
BackColor = &H00FFFF80&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4245
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7380
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash1.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4245
ScaleWidth = 7380
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
BackColor = &H00FFFF80&
Height = 4050
Left = 120
TabIndex = 0
Top = 60
Width = 7080
Begin MSWinsockLib.Winsock Winsock1
Left = 3600
Top = 3000
_ExtentX = 741
_ExtentY = 741
_Version = 393216
End
Begin SysInfoLib.SysInfo SysInfo1
Left = 4080
Top = 1680
_ExtentX = 1005
_ExtentY = 1005
_Version = 393216
End
Begin VB.Timer Timer1
Interval = 5000
Left = 2280
Top = 3000
End
Begin VB.Image imgLogo
Height = 2385
Left = 360
Picture = "frmSplash1.frx":000C
Stretch = -1 'True
Top = 795
Width = 1815
End
Begin VB.Label lblWarning
BackStyle = 0 'Transparent
Caption = "警告:版权所有,不得侵犯!"
ForeColor = &H000000FF&
Height = 195
Left = 150
TabIndex = 2
Top = 3660
Width = 6765
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "版本"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 240
Left = 6240
TabIndex = 3
Top = 2400
Width = 510
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "平台"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 240
Left = 6000
TabIndex = 4
Top = 2040
Width = 750
End
Begin VB.Label lblProductName
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "产品"
BeginProperty Font
Name = "隶书"
Size = 32.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000080FF&
Height = 645
Left = 2400
TabIndex = 6
Top = 1200
Width = 1350
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "授权"
ForeColor = &H00008000&
Height = 255
Left = 120
TabIndex = 1
Top = 240
Width = 6855
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "个人制作"
BeginProperty Font
Name = "宋体"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF00FF&
Height = 360
Left = 2355
TabIndex = 5
Top = 705
Width = 1500
End
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)
'lblPlatform.Caption = "平台:" & SysInfo1.OSVersion
End Sub
Private Sub Form_Load()
lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
lblProductName.Caption = App.Title
lblLicenseTo.Caption = "授权:" & Winsock1.LocalHostName
lblPlatform.Caption = "平台:" & SysInfo1.OSVersion
End Sub
Private Sub Frame1_Click()
'Unload Me
End Sub
Private Sub Timer1_Timer()
Unload frmSplash
frmEnter.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -