-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
UpdateForm.dfm
101 lines (101 loc) · 1.91 KB
/
UpdateForm.dfm
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
object fUpdateForm: TfUpdateForm
Left = 586
Top = 158
BorderStyle = bsDialog
Caption = 'Updates'
ClientHeight = 464
ClientWidth = 680
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
OnCloseQuery = FormCloseQuery
PixelsPerInch = 96
TextHeight = 13
object bvlSplit: TBevel
Left = 8
Top = 88
Width = 665
Height = 9
Shape = bsTopLine
end
object lblLog: TLabel
Left = 8
Top = 96
Width = 72
Height = 13
Caption = 'Processing log:'
end
object lblNumberOfThreads: TLabel
Left = 515
Top = 60
Width = 94
Height = 13
Alignment = taRightJustify
Caption = 'Number of threads:'
end
object pnlInfo: TPanel
Left = 8
Top = 8
Width = 665
Height = 41
BevelInner = bvLowered
Caption = 'pnlInfo'
TabOrder = 0
end
object btnAction: TButton
Left = 8
Top = 56
Width = 105
Height = 25
Caption = 'btnAction'
TabOrder = 1
OnClick = btnActionClick
end
object pbProgress: TProgressBar
Left = 120
Top = 60
Width = 385
Height = 17
Max = 1000
Step = 1
TabOrder = 2
end
object meLog: TMemo
Left = 8
Top = 112
Width = 665
Height = 345
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 4
WordWrap = False
OnKeyPress = meLogKeyPress
end
object seNumberOfThreads: TSpinEdit
Left = 616
Top = 56
Width = 57
Height = 22
MaxValue = 1024
MinValue = 1
TabOrder = 3
Value = 1
OnChange = seNumberOfThreadsChange
end
object tmrUpdate: TTimer
Enabled = False
Interval = 100
OnTimer = tmrUpdateTimer
end
end