frmsplash.frm
来自「图书管理系统,图书信息,添加学生信息,借书与归还记载,借书卡办理,查询图书信息」· FRM 代码 · 共 90 行
FRM
90 行
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4005
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7080
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4005
ScaleWidth = 7080
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Height = 4050
Left = 0
TabIndex = 0
Top = -60
Width = 7080
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "欢迎登录图书馆管理系统"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 435
Left = 1080
TabIndex = 3
Top = 960
Width = 4950
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "单击此窗体或按下任意键继续..."
Height = 180
Left = 1200
TabIndex = 2
Top = 2400
Width = 2610
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "小组成员:尹剑,刘桑榆,胡高俊,王文瀚,唐李敏"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 840
TabIndex = 1
Top = 3480
Width = 5520
End
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_KeyPress(KeyAscii As Integer)
frmLogin.Show
Unload Me
End Sub
Private Sub Frame1_Click()
frmLogin.Show
Unload Me
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?