📄 fmloading.frm
字号:
VERSION 5.00
Begin VB.Form fmloading
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Caption = "Form4"
ClientHeight = 3360
ClientLeft = 3330
ClientTop = 2625
ClientWidth = 4905
LinkTopic = "Form4"
ScaleHeight = 3360
ScaleWidth = 4905
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 1000
Left = 3720
Top = 1800
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "欢迎进入排课管理系统"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 960
TabIndex = 2
Top = 1560
Width = 2535
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "数据初始化中,请等待..."
ForeColor = &H000000FF&
Height = 255
Left = 1080
TabIndex = 1
Top = 2760
Width = 2175
End
Begin VB.Label Label2
BackColor = &H00FF0000&
BackStyle = 0 'Transparent
Caption = "排课管理系统 V1.0 "
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 735
Left = 360
TabIndex = 0
Top = 360
Width = 3975
End
End
Attribute VB_Name = "fmloading"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Me.MousePointer = 11
Dim X, Y As Integer
'ImgBg.Picture = LoadPicture(App.Path + "\back.jpg")
'ImgBg.Width = frmTeacher.Width
'ImgBg.Height = frmTeacher.Height
X = (Screen.Width - frmTeacher.Width) / 2
Y = (Screen.Height - frmTeacher.Height) / 2
frmTeacher.Left = X
frmTeacher.Top = Y
Timer1.Enabled = True
'
'
End Sub
Private Sub ImgBg_Click()
End Sub
Private Sub Timer1_Timer()
Unload Me
frmLogin.Show
Beep
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -