?? frmsplash.frm
字號:
VERSION 5.00
Begin VB.Form FrmSplash
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 4845
ClientLeft = 0
ClientTop = 0
ClientWidth = 5970
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 = 4845
ScaleWidth = 5970
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 200
Left = 120
Top = 4320
End
Begin VB.Label Label4
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "For Windows98/Me/2000/Xp"
Height = 210
Left = 3240
TabIndex = 3
Top = 1200
Width = 2520
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "版權所有(C) 2003-2004"
Height = 210
Left = 3240
TabIndex = 2
Top = 3840
Width = 2205
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "設計:A8班"
Height = 210
Left = 3240
TabIndex = 1
Top = 3360
Width = 1050
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 = &H00FF8080&
Height = 435
Left = 960
TabIndex = 0
Top = 480
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 + -