📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H00FFFF80&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4245
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7380
ClipControls = 0 'False
ControlBox = 0 'False
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4245
ScaleWidth = 7380
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame FrameMain
Height = 4050
Left = 120
TabIndex = 0
Top = 120
Width = 7200
Begin VB.Timer Timer1
Interval = 100
Left = 0
Top = 120
End
Begin VB.Line lnProcess
BorderColor = &H00C00000&
BorderWidth = 5
X1 = 2640
X2 = 2880
Y1 = 2160
Y2 = 2160
End
Begin VB.Label lblDataEnv
AutoSize = -1 'True
Caption = "数据环境:Access 2000"
BeginProperty Font
Name = "Arial"
Size = 15.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 2520
TabIndex = 8
Top = 2760
Width = 3450
End
Begin VB.Image imgLogo
Height = 2505
Left = 120
Picture = "frmSplash.frx":0000
Stretch = -1 'True
Top = 1155
Width = 2295
End
Begin VB.Label lblCopyright
Caption = "版权所有,违者必究"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 4560
TabIndex = 4
Top = 3240
Width = 2415
End
Begin VB.Label lblCompanyName
Caption = "考试系统软件公司"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 4560
TabIndex = 3
Top = 3480
Width = 2415
End
Begin VB.Label lblWarning
Caption = "警告:本公司保留对恶意伤害本软件的行为采取进一步行动的权力"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 120
TabIndex = 2
Top = 3720
Width = 6855
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "Version 1.0.0"
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 5640
TabIndex = 5
Top = 1800
Width = 1470
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "开发平台:Visual Basic 6.0"
BeginProperty Font
Name = "Arial"
Size = 15.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 2520
TabIndex = 6
Top = 2280
Width = 4095
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
Caption = "授权:"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 1
Top = 240
Width = 6855
End
Begin VB.Label lblProductName
Alignment = 2 'Center
Caption = "计算机等级考试模拟系统"
BeginProperty Font
Name = "方正舒体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 1605
Left = 360
TabIndex = 7
Top = 360
Width = 6780
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_Load()
' lnProcess.X2 = lnProcess.X1
'End Sub
Private Sub FrameMain_Click()
Unload Me
MDIfrmMain.Show
End Sub
Private Sub Timer1_Timer()
lnProcess.X2 = lnProcess.X2 + 120
If (lnProcess.X2 - lnProcess.X1) > 3500 Then
Unload Me
MDIfrmMain.Show
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -