📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4245
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7335
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4245
ScaleWidth = 7335
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
BackColor = &H00C0C0C0&
Height = 4050
Left = 120
TabIndex = 0
Top = 60
Width = 7080
Begin VB.PictureBox picIcon
AutoSize = -1 'True
BorderStyle = 0 'None
ClipControls = 0 'False
Height = 1800
Left = 540
Picture = "frmSplash.frx":000C
ScaleHeight = 1264.2
ScaleMode = 0 'User
ScaleWidth = 1264.2
TabIndex = 8
Top = 1260
Width = 1800
End
Begin VB.Timer Timer1
Interval = 3000
Left = 3435
Top = 2460
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "授权:所有使用该软件的用户,须经过温州东化计算机科技有限公司注册。"
ForeColor = &H00000000&
Height = 255
Left = 45
TabIndex = 9
Top = 315
Width = 6255
End
Begin VB.Label lblCopyright
BackStyle = 0 'Transparent
Caption = "版权所有,盗版必究。"
ForeColor = &H00000000&
Height = 255
Left = 4050
TabIndex = 3
Top = 2955
Width = 2415
End
Begin VB.Label lblCompany
BackStyle = 0 'Transparent
Caption = "程序设计:俞思龙 蒋君伟 胡仁兵"
ForeColor = &H00000000&
Height = 255
Left = 4050
TabIndex = 2
Top = 3255
Width = 2655
End
Begin VB.Label lblWarning
BackStyle = 0 'Transparent
Caption = "警告:程序版权归温州东化计算机科技有限公司所有。"
ForeColor = &H00000000&
Height = 195
Left = 150
TabIndex = 1
Top = 3675
Width = 6765
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "版本"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800080&
Height = 210
Left = 6285
TabIndex = 4
Top = 2460
Width = 420
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "平台:Windows95/98/NT4.0"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800080&
Height = 210
Left = 4200
TabIndex = 5
Top = 2130
Width = 2520
End
Begin VB.Label lblProductName
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "NetBar服务器"
BeginProperty Font
Name = "宋体"
Size = 26.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 525
Left = 2790
TabIndex = 7
Top = 1260
Width = 3345
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "网吧自助系列软件之一"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 210
Left = 900
TabIndex = 6
Top = 690
Width = 2100
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)
Unload Me
End Sub
Private Sub Form_Load()
On Error Resume Next
Screen.MousePointer = 11
Me.Show
Me.Refresh
lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
lblProductName.Caption = App.Title
Load frmServer
End Sub
Private Sub Form_Unload(Cancel As Integer)
On Error Resume Next
frmServer.Show
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub picIcon_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -