📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
AutoRedraw = -1 'True
BackColor = &H00FF8080&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 6120
ClientLeft = 45
ClientTop = 45
ClientWidth = 11160
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "frmSplash.frx":0442
ScaleHeight = 6120
ScaleWidth = 11160
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 1000
Left = 120
Top = 2160
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
frmShow.Show
End Sub
Private Sub Form_Load()
If App.PrevInstance Then End '==============================本程序不能执行两个副本
Dim TmpBool As Boolean
'TmpBool = InitializeWinIo
'If TmpBool = False Then MsgBox "程序在Win2000下运行可能有问题,请先测试是否正常!"
End Sub
Private Sub Form_Click()
Unload Me
frmShow.Show
End Sub
Private Sub Timer1_Timer()
Static a As Integer
a = a + 1
If a = 4 Then
Unload Me
frmShow.Show
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -