📄 grvbsplashfrm.frm
字号:
VERSION 5.00
Begin VB.Form Splash
Appearance = 0 'Flat
AutoRedraw = -1 'True
BackColor = &H00000000&
BorderStyle = 0 'None
ClientHeight = 4500
ClientLeft = 4845
ClientTop = 5070
ClientWidth = 7500
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "GRVBSplashFrm.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "GRVBSplashFrm.frx":000C
ScaleHeight = 4500
ScaleWidth = 7500
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer SplashTimer
Interval = 1600
Left = 6960
Top = 120
End
End
Attribute VB_Name = "Splash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'form Splash
'程序封面
'- - - - - - - - - - - - - - - - - - - - - - - - - -
'计时器,显示1.6秒.
Private Sub SplashTimer_Timer()
Me.Hide
SplashTimer.Enabled = False
Call Main
End Sub
'- - - - - - - - - - - - - - - - - - - - - - - - - -
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -