📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H80000013&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4245
ClientLeft = 255
ClientTop = 1410
ClientWidth = 6405
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
Moveable = 0 'False
ScaleHeight = 4245
ScaleWidth = 6405
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
BackColor = &H80000013&
Height = 4050
Left = 120
TabIndex = 0
Top = 60
Width = 6180
Begin VB.Timer Timer1
Interval = 1200
Left = 2730
Top = 480
End
Begin VB.Label Label1
BackColor = &H80000013&
Caption = " 通 讯 录"
BeginProperty Font
Name = "华文新魏"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 675
Left = 1860
TabIndex = 1
Top = 1500
Width = 3855
End
Begin VB.Image imgLogo
Height = 1185
Left = 720
Picture = "frmSplash.frx":000C
Stretch = -1 'True
Top = 1200
Width = 1275
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 '退出
Load Form1
Form1.Show
End Sub
Private Sub Timer1_Timer()
Unload Me '退出
Load Form1
Form1.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -