📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form FrmSplash
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 5025
ClientLeft = 0
ClientTop = 0
ClientWidth = 6045
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
Picture = "FrmSplash.frx":0000
ScaleHeight = 5025
ScaleWidth = 6045
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 200
Left = 120
Top = 4320
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "05090401X"
BeginProperty Font
Name = "微软雅黑"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 390
Left = 4200
TabIndex = 1
Top = 4560
Width = 1635
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "学生学籍管理系统"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 435
Left = 960
TabIndex = 0
Top = 720
Width = 3600
End
End
Attribute VB_Name = "FrmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim DelayTime As Integer
Private Sub Form_Load()
DelayTime = 0
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
If DelayTime > 3 Then
Timer1.Enabled = False
Load FrmLogin
FrmLogin.Show
Unload Me
Else
DelayTime = DelayTime + 1
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -