📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H80000000&
BorderStyle = 0 'None
ClientHeight = 3795
ClientLeft = 210
ClientTop = 1365
ClientWidth = 6000
ClipControls = 0 'False
ControlBox = 0 'False
ForeColor = &H8000000B&
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3795
ScaleWidth = 6000
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 500
Left = 720
Top = 3315
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "数据库大作业"
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1560
TabIndex = 2
Top = 240
Width = 3135
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "姓名:林熙明 学号:200214772011023"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 0
TabIndex = 1
Top = 2760
Width = 6015
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "仓储管理"
BeginProperty Font
Name = "宋体"
Size = 48
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 975
Left = 1080
TabIndex = 0
Top = 960
Width = 4215
End
Begin VB.Image Image1
Height = 3795
Left = 0
Picture = "frmSplash.frx":000C
Top = -15
Width = 6000
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_Load()
Dim retValue As Long
retValue = SetWindowPos(Me.hWnd, HWND_TOPMOST, 200, 200, 400, 253, SWP_SHOWWINDOWS)
End Sub
Private Sub Timer1_Timer()
If gStart = True Then
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -