📄
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Proc_Frm
BackColor = &H80000009&
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 645
ClientLeft = 0
ClientTop = 0
ClientWidth = 5400
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 645
ScaleWidth = 5400
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Tm_Proc
Enabled = 0 'False
Interval = 200
Left = 4845
Top = -45
End
Begin MSComctlLib.ProgressBar PB_Proc
Height = 315
Left = 75
TabIndex = 0
Top = 255
Width = 5175
_ExtentX = 9128
_ExtentY = 556
_Version = 393216
Appearance = 1
Scrolling = 1
End
Begin VB.Label Lab_Mark
AutoSize = -1 'True
BackColor = &H80000009&
BackStyle = 0 'Transparent
Caption = "正在刷新数据..."
Height = 180
Left = 90
TabIndex = 1
Top = 45
Width = 1350
End
End
Attribute VB_Name = "Proc_Frm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Tm_Proc_Timer()
With Me.PB_Proc
.Value = (.Value + 5) Mod 100
End With
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -