📄 jbbwin1.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
Object = "{50CBA22D-9024-11D1-AD8F-8E94A5273767}#8.6#0"; "TRANIMG2.OCX"
Begin VB.Form JBBWIN1
BorderStyle = 3 'Fixed Dialog
Caption = "提示信息"
ClientHeight = 1305
ClientLeft = 690
ClientTop = 1740
ClientWidth = 5400
ControlBox = 0 'False
Icon = "JBBWIN1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1305
ScaleWidth = 5400
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 255
Left = 240
TabIndex = 3
Top = 840
Width = 4935
_ExtentX = 8705
_ExtentY = 450
_Version = 393216
Appearance = 1
End
Begin VB.Timer Timer1
Interval = 1
Left = 1320
Top = 120
End
Begin DevPowerTransImg.TransImg TransImg1
Height = 495
Left = 8880
TabIndex = 0
Top = 680
Width = 1095
_ExtentX = 1931
_ExtentY = 873
AutoSize = 0 'False
MaskColor = 16777215
Transparent = -1 'True
End
Begin MSComCtl2.Animation Animation1
Height = 735
Left = 120
TabIndex = 1
Top = 120
Width = 855
_ExtentX = 1508
_ExtentY = 1296
_Version = 393216
AutoPlay = -1 'True
Center = -1 'True
FullWidth = 57
FullHeight = 49
End
Begin VB.Label Label1
Caption = "请稍候!正在准备报表数据..."
Height = 255
Left = 1200
TabIndex = 2
Top = 360
Width = 3975
End
End
Attribute VB_Name = "JBBWIN1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Animation1.Open (App.Path & "\FINDFILE.AVI")
End Sub
Private Sub Timer1_Timer()
If ProgressBar1.Value = ProgressBar1.Max Then
Unload Me
Else
If ProgressBar1.Value = ProgressBar1.Max - 10 Then
Exit Sub
Else
ProgressBar1.Value = ProgressBar1.Value + 5
End If
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -