-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathOptBatch.dfm
99 lines (99 loc) · 2.07 KB
/
OptBatch.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
object OptimalBatch: TOptimalBatch
Left = 438
Top = 715
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Define Maximum Autorun Thread Number'
ClientHeight = 113
ClientWidth = 283
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object GroupBox1: TGroupBox
Left = 10
Top = 8
Width = 265
Height = 56
Caption = 'Maximum Number of Threads'
TabOrder = 0
object RadioButton1: TRadioButton
Tag = 1
Left = 15
Top = 22
Width = 34
Height = 17
Caption = '1'
TabOrder = 0
OnClick = RadioButton1Click
end
object RadioButton2: TRadioButton
Tag = 2
Left = 55
Top = 22
Width = 34
Height = 17
Caption = '2'
TabOrder = 1
OnClick = RadioButton1Click
end
object RadioButton3: TRadioButton
Tag = 4
Left = 95
Top = 22
Width = 34
Height = 17
Caption = '4'
TabOrder = 2
OnClick = RadioButton1Click
end
object RadioButton4: TRadioButton
Tag = 8
Left = 135
Top = 22
Width = 34
Height = 17
Caption = '8'
Checked = True
TabOrder = 3
TabStop = True
OnClick = RadioButton1Click
end
object RadioButton5: TRadioButton
Tag = 16
Left = 175
Top = 22
Width = 34
Height = 17
Caption = '16'
TabOrder = 4
OnClick = RadioButton1Click
end
object RadioButton6: TRadioButton
Tag = 32
Left = 215
Top = 22
Width = 34
Height = 17
Caption = '32'
TabOrder = 5
OnClick = RadioButton1Click
end
end
object Button1: TButton
Left = 104
Top = 75
Width = 75
Height = 25
Caption = 'OK'
TabOrder = 1
OnClick = Button1Click
end
end