📄 form32.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form sp2
Caption = "系统加载中..."
ClientHeight = 5040
ClientLeft = 60
ClientTop = 450
ClientWidth = 7035
LinkTopic = "Form32"
ScaleHeight = 5040
ScaleWidth = 7035
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Interval = 10
Left = 240
Top = 3720
End
Begin MSComctlLib.ProgressBar P1
Height = 375
Left = 1440
TabIndex = 0
Top = 3360
Width = 4215
_ExtentX = 7435
_ExtentY = 661
_Version = 393216
Appearance = 1
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "小区物业管理系统"
BeginProperty Font
Name = "华文彩云"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 615
Left = 2040
TabIndex = 1
Top = 840
Width = 4095
End
Begin VB.Image Image1
Height = 11520
Left = 0
Picture = "Form32.frx":0000
Top = 0
Width = 15360
End
End
Attribute VB_Name = "sp2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim dlaytime As Integer
Private Sub Form_Load()
Dim x0 As Long '居中显示
Dim y0 As Long
x0 = Screen.Width
y0 = Screen.Height
x0 = (x0 - Me.Width) / 2
y0 = (y0 - Me.Height) / 2
Me.Move x0, y0
dlaytime = 0
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
If dlaytime >= 100 Then
'Timer1.Enabled = False
' Load frmLogin
' frmLogin.Show
Unload Me
Else
dlaytime = dlaytime + 1
P1.Value = dlaytime
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -