-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttpAutoCheckFrm.dfm
More file actions
142 lines (142 loc) · 2.43 KB
/
httpAutoCheckFrm.dfm
File metadata and controls
142 lines (142 loc) · 2.43 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
object httpAutoCheckForm: ThttpAutoCheckForm
Left = 1049
Top = 397
Width = 192
Height = 199
Caption = 'Automatic Checks'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 8
Width = 76
Height = 13
Caption = 'Min. User Count'
end
object Label2: TLabel
Left = 8
Top = 40
Width = 79
Height = 13
Caption = 'Max. User Count'
end
object Label3: TLabel
Left = 8
Top = 72
Width = 72
Height = 13
Caption = 'User Increment'
end
object Label4: TLabel
Left = 8
Top = 104
Width = 74
Height = 13
Caption = 'Max. Avg. Time'
end
object MinUserEdit: TEdit
Left = 96
Top = 8
Width = 49
Height = 21
TabOrder = 0
Text = '1'
end
object MaxUserEdit: TEdit
Left = 96
Top = 40
Width = 49
Height = 21
TabOrder = 2
Text = '1'
end
object UserIncementEdit: TEdit
Left = 96
Top = 72
Width = 49
Height = 21
TabOrder = 4
Text = '1'
end
object MaxAvgTimeEdit: TEdit
Left = 96
Top = 104
Width = 49
Height = 21
TabOrder = 6
Text = '0'
end
object StartButton: TButton
Left = 8
Top = 136
Width = 75
Height = 25
Caption = 'Start'
Default = True
ModalResult = 1
TabOrder = 7
end
object CancelButton: TButton
Left = 88
Top = 136
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 8
end
object MinUserUpDown: TUpDown
Left = 145
Top = 8
Width = 21
Height = 21
Associate = MinUserEdit
Min = 1
Position = 1
TabOrder = 1
Wrap = False
end
object MaxUserUpDown: TUpDown
Left = 145
Top = 40
Width = 21
Height = 21
Associate = MaxUserEdit
Min = 1
Max = 1000
Position = 1
TabOrder = 3
Wrap = False
end
object UserIncrementUpDown: TUpDown
Left = 145
Top = 72
Width = 21
Height = 21
Associate = UserIncementEdit
Min = 1
Position = 1
TabOrder = 5
Wrap = False
end
object MaxAvgTimeUpDown: TUpDown
Left = 145
Top = 104
Width = 21
Height = 21
Associate = MaxAvgTimeEdit
Min = 0
Position = 0
TabOrder = 9
Wrap = False
end
end