📄 初始化图片.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form frmlogo
BorderStyle = 0 'None
Caption = "Form2"
ClientHeight = 4275
ClientLeft = 4860
ClientTop = 2490
ClientWidth = 7365
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4275
ScaleWidth = 7365
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Visible = 0 'False
Begin VB.Timer Timer2
Interval = 20
Left = 3600
Top = 3120
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 255
Left = 120
TabIndex = 0
Top = 3840
Width = 2055
_ExtentX = 3625
_ExtentY = 450
_Version = 393216
Appearance = 1
Scrolling = 1
End
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 3000
Left = 4320
Top = 3120
End
Begin VB.Image Image1
Height = 4305
Left = 0
Picture = "初始化图片.frx":0000
Top = 0
Width = 7365
End
End
Attribute VB_Name = "frmlogo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim i As Integer
Private Sub Form_Load()
Timer1.Enabled = True
Timer2.Enabled = True
End Sub
Private Sub Image1_Click()
End Sub
Private Sub Timer1_Timer()
Unload frmlogo
MDIForm1.Show
QJBL_1 = 0
frmDenglu.Show vbModal
End Sub
Private Sub Timer2_Timer()
i = i + 1
ProgressBar1.Value = i + 1
If ProgressBar1.Value >= ProgressBar1.Max Then
Timer2.Enabled = False
Exit Sub
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -