-
Notifications
You must be signed in to change notification settings - Fork 0
/
progress.frm
71 lines (69 loc) · 2.14 KB
/
progress.frm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
VERSION 5.00
Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
Begin VB.Form progress
BorderStyle = 3 'Fixed Dialog
ClientHeight = 1305
ClientLeft = 1815
ClientTop = 3540
ClientWidth = 7095
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "progress.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1305
ScaleWidth = 7095
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Visible = 0 'False
Begin VB.Frame Frame1
Height = 1215
Left = 0
TabIndex = 0
Top = 0
Width = 7095
Begin ComctlLib.ProgressBar perc
Height = 375
Left = 360
TabIndex = 1
Top = 480
Width = 6375
_ExtentX = 11245
_ExtentY = 661
_Version = 327682
BorderStyle = 1
Appearance = 1
End
Begin VB.Label Label2
Alignment = 2 'Center
BackStyle = 0 'Transparent
Height = 255
Left = 0
TabIndex = 3
Top = 840
Width = 7095
End
Begin VB.Label Label
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Progress"
Height = 255
Left = 360
TabIndex = 2
Top = 240
Width = 6375
End
End
End
Attribute VB_Name = "progress"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
GFS "Progress bar title", Label
GFS "Progress bar text", Label2
End Sub