-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmStatus.frm
executable file
·62 lines (59 loc) · 1.71 KB
/
frmStatus.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
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmStatus
BorderStyle = 3 'Fixed Dialog
Caption = "Progress"
ClientHeight = 2850
ClientLeft = 45
ClientTop = 330
ClientWidth = 4155
ControlBox = 0 'False
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2850
ScaleWidth = 4155
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdCancel
Caption = "Cancel"
Height = 495
Left = 3240
TabIndex = 3
Top = 2280
Width = 855
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 255
Left = 240
TabIndex = 0
Top = 1080
Width = 3735
_ExtentX = 6588
_ExtentY = 450
_Version = 393216
Appearance = 1
End
Begin VB.Label lblFile
Height = 735
Left = 240
TabIndex = 2
Top = 240
Width = 3615
End
Begin VB.Label lblStatus
Height = 495
Left = 240
TabIndex = 1
Top = 1560
Width = 3615
End
End
Attribute VB_Name = "frmStatus"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
End
End Sub