?? 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 = 3240
Top = 1800
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "數據初始化中,請等待..."
ForeColor = &H000000FF&
Height = 255
Left = 1080
TabIndex = 3
Top = 2760
Width = 2175
End
Begin VB.Image Image1
Height = 480
Left = 360
Picture = "fmloading.frx":0000
Top = 480
Width = 480
End
Begin VB.Label Label2
BackColor = &H00FF0000&
BackStyle = 0 'Transparent
Caption = "排課管理系統 V1.0 "
BeginProperty Font
Name = "宋體"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 615
Left = 1200
TabIndex = 2
Top = 480
Width = 3255
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "作者:ZeroCool"
ForeColor = &H00C00000&
Height = 255
Left = 1080
TabIndex = 1
Top = 2160
Width = 1215
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "(測試版)"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF8080&
Height = 375
Left = 1200
TabIndex = 0
Top = 1320
Width = 2055
End
Begin VB.Image ImgBg
Height = 11520
Left = 0
Stretch = -1 'True
Top = 0
Width = 15360
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 = Form1.Width
ImgBg.Height = Form1.Height
X = (Screen.Width - Form1.Width) / 2
Y = (Screen.Height - Form1.Height) / 2
Form1.Left = X
Form1.Top = Y
Timer1.Enabled = True
'
'
End Sub
Private Sub Timer1_Timer()
Unload Me
fmStart.Show
Beep
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -