?? frmsplash.frm
字號:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 3990
ClientLeft = 0
ClientTop = 0
ClientWidth = 6465
KeyPreview = -1 'True
LinkTopic = "Form1"
ScaleHeight = 3990
ScaleWidth = 6465
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame fraEdge
Height = 3930
Left = 120
TabIndex = 0
Top = 0
Width = 6240
Begin VB.Label lblInfo
AutoSize = -1 'True
Caption = "學(xué)生信息管理系統(tǒng)"
BeginProperty Font
Name = "華文行楷"
Size = 26.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C000C0&
Height = 555
Index = 0
Left = 1080
TabIndex = 6
Top = 480
Width = 4320
End
Begin VB.Label lblInfo
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "本軟件僅供研究學(xué)習(xí)之用,任何未經(jīng)作者書面許可的商業(yè)應(yīng)用皆非法"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000C000&
Height = 480
Index = 5
Left = 960
TabIndex = 5
Top = 3240
Width = 3900
WordWrap = -1 'True
End
Begin VB.Label lblInfo
AutoSize = -1 'True
Caption = "數(shù)據(jù)環(huán)境:Microsoft Access"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF8080&
Height = 240
Index = 3
Left = 1920
TabIndex = 4
Top = 2040
Width = 3435
End
Begin VB.Label lblInfo
AutoSize = -1 'True
Caption = "1.0.0"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Index = 1
Left = 4920
TabIndex = 3
Top = 1080
Width = 675
End
Begin VB.Label lblInfo
AutoSize = -1 'True
Caption = "版權(quán)所有 違者必究"
BeginProperty Font
Name = "黑體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 240
Index = 4
Left = 1800
TabIndex = 2
Top = 2640
Width = 2580
End
Begin VB.Image imgLogo
Height = 1665
Left = 360
Picture = "frmSplash.frx":0000
Stretch = -1 'True
Top = 1200
Width = 1215
End
Begin VB.Label lblInfo
AutoSize = -1 'True
Caption = "開發(fā)環(huán)境:Visual Basic 6.0"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF8080&
Height = 240
Index = 2
Left = 1920
TabIndex = 1
Top = 1560
Width = 3450
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
'該窗體有兩個(gè)作用,一為系統(tǒng)啟動時(shí)的窗體,二為系統(tǒng)運(yùn)行時(shí)的“關(guān)于...”窗體,而mbAbout即為標(biāo)識
'若mbAbout為false, 則表示為系統(tǒng)啟動時(shí)的窗體
'若mbAbout為true,則表示為系統(tǒng)運(yùn)行時(shí)的“關(guān)于”窗體
Public mbAbout As Boolean
Sub UnloadForm()
Unload Me
''如果當(dāng)前為系統(tǒng)啟動時(shí)所顯示窗體,則在退出本窗體之后,需要加載登錄窗體
If Not mbAbout Then frmLogin.Show
End Sub
'以下各代碼,表示:如果點(diǎn)擊窗體上的任何部分,或者按下任一個(gè)鍵,都會調(diào)用UnloadForm子程序
Private Sub Form_Click() '單擊窗體
UnloadForm
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer) '按鍵
UnloadForm
End Sub
Private Sub fraEdge_Click() '單擊框架
UnloadForm
End Sub
Private Sub imgLogo_Click() '單擊圖標(biāo)
UnloadForm
End Sub
Private Sub lblInfo_Click(Index As Integer) '單擊標(biāo)簽
UnloadForm
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -