📄 frmflash.frm
字号:
VERSION 5.00
Begin VB.Form frmFlash
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 2436
ClientLeft = 0
ClientTop = 0
ClientWidth = 7212
LinkTopic = "Form1"
ScaleHeight = 2436
ScaleWidth = 7212
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
BackColor = &H00FFC0C0&
ForeColor = &H80000008&
Height = 2415
Left = 0
ScaleHeight = 2388
ScaleWidth = 7188
TabIndex = 0
Top = 0
Width = 7215
Begin VB.Timer Timer1
Interval = 3000
Left = 5880
Top = 360
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "酒店预订系统"
BeginProperty Font
Name = "楷体_GB2312"
Size = 42
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 975
Left = 720
TabIndex = 1
Top = 720
Width = 5535
End
End
End
Attribute VB_Name = "frmFlash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
'设定窗体的显示位置
Me.Left = (Screen.Width - Me.Width) / 2
Me.Top = (Screen.Height - Me.Height) / 3
End Sub
Private Sub Timer1_Timer()
Unload frmFlash '卸载展示窗体
frmLogin.Show 1 '显示登录窗体,有模式
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -