📄 frmjm.frm
字号:
VERSION 5.00
Object = "{B2294045-368A-11D2-8043-0060089950F4}#1.0#0"; "ProcBar.ocx"
Begin VB.Form dr
Caption = "Form1"
ClientHeight = 6555
ClientLeft = 60
ClientTop = 345
ClientWidth = 9060
LinkTopic = "Form1"
ScaleHeight = 6555
ScaleWidth = 9060
StartUpPosition = 3 '窗口缺省
Begin ProcessBar.ProcBar ProcBar1
Height = 375
Left = 120
Top = 6120
Width = 8655
_ExtentX = 15266
_ExtentY = 661
End
Begin VB.PictureBox Picture1
Height = 6015
Left = 0
Picture = "frmJM.frx":0000
ScaleHeight = 5955
ScaleWidth = 9075
TabIndex = 0
Top = 0
Width = 9135
End
Begin VB.Timer Timer1
Interval = 150
Left = 840
Top = 2400
End
End
Attribute VB_Name = "dr"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2
End Sub
Private Sub Timer1_Timer()
ProcBar1.Value = ProcBar1.Value + 4 '进度条的控制
If ProcBar1.Value = 100 Then
Timer1.Enabled = True
Unload Me
Load frmLogin
frmLogin.Show
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -